export interface FileInputProps { onChange: (files: File[]) => void; value?: File[]; disabled?: boolean; } export declare function FileInput(props: FileInputProps): import("react/jsx-runtime").JSX.Element;