import * as react from 'react'; import { ReactNode } from 'react'; interface FileInputProps { onSelect?: (files: FileList | null) => void; acceptedFileTypes?: string[]; allowsMultiple?: boolean; icon?: ReactNode; defaultText?: string | ReactNode; variant?: 'contained' | 'outlined'; size?: 'small' | 'medium' | 'large' | 'full'; errorMessage?: string; className?: string; disabled?: boolean; children?: ReactNode; } declare const FileInput: react.ForwardRefExoticComponent>; export { FileInput, type FileInputProps };