///
export declare type FileInputAttributes = {
value?: string;
} & Pick, 'autoComplete' | 'autoFocus' | 'disabled' | 'name' | 'readOnly' | 'placeholder' | 'onChange' | 'onFocus' | 'onBlur' | 'onClick'>;
export declare type FileInputProps = {
className?: string;
hasError?: boolean;
borderless?: boolean;
} & FileInputAttributes;