import { IconProps } from '../Icon'; export declare type InputSize = 'expansive' | 'compact' | 'micro'; export declare type InputType = 'date' | 'number' | 'password' | 'text'; export interface InputProps { size?: InputSize; isError?: boolean; placeholder?: string; icon?: IconProps['name']; value?: string; disabled?: boolean; readonly?: boolean; type?: InputType; mask?: string; name?: string; maxLength?: number; }