import { ReactNode } from 'react'; import { ElementProps } from '../Form/Element'; import { UIComponent } from '../ui-types'; export interface IFileInput extends UIComponent> { onChangeFiles?: (files: FileList | null) => void; accept?: string; multiple?: boolean; children?: ReactNode; wait?: boolean; className?: string; icon?: boolean; } declare const FileInput: ({ onChange, onChangeFiles, accept, multiple, wait, children, className, icon, ...props }: IFileInput) => import("react").JSX.Element; export default FileInput;