import type React from 'react'; import type { BaseInputProps, InputProps } from '../interface'; export declare function hasAddon(props: BaseInputProps | InputProps): boolean; export declare function hasPrefixSuffix(props: BaseInputProps | InputProps): boolean; export declare function resolveOnChange(target: E, e: React.ChangeEvent | React.MouseEvent | React.CompositionEvent, onChange: undefined | ((event: React.ChangeEvent) => void), targetValue?: string): void;