/// declare type Props = { value: null | File; name: string; onChange: (event: { target: { name: string; value: null | File; }; }) => any; placeholder: string; size?: 'small' | 'regular'; bg?: string; color?: string; disabled?: boolean; }; export declare const FileInput: ({ onChange, name, value, placeholder, size, bg, color, disabled, ...props }: Props) => JSX.Element; export {};