import type { CSSProperties, ReactElement } from 'react'; export interface InputStyle { input?: CSSProperties; inputWrapper?: CSSProperties; } interface InputProps extends Omit, 'style'> { style?: InputStyle; autoSelect?: boolean; checkValue?: (element: number | string) => boolean; format?: () => (element: string) => number | string; renderIcon?: (() => ReactElement) | null; canClear?: boolean; onClear?: () => void; datalist?: string[]; debounceTime?: number; small?: boolean; } declare const Input: import("react").ForwardRefExoticComponent>; export default Input; //# sourceMappingURL=Input.d.ts.map