export interface FilePickerProps { tag?: Function | string; onChange?: Function; multiple?: boolean; children?: Function; name?: string; allowedFileTypes?: Array; maxSize?: number | string; } declare const FilePicker: React.ComponentType; export default FilePicker;