export interface FilePickerBtnProps { onClick?: Function; onChange?: Function; multiple?: boolean; name?: string; color?: string; children?: React.ReactType; allowedFileTypes?: Array; maxSize?: number; 'data-testid'?:string; } declare const FilePickerBtn: React.ComponentType; export default FilePickerBtn;