UNPKG

320 BTypeScriptView Raw
1export interface FilePickerProps {
2 tag?: Function | string;
3 onChange?: Function;
4 multiple?: boolean;
5 children?: Function;
6 name?: string;
7 allowedFileTypes?: Array<string>;
8 maxSize?: number | string;
9}
10
11declare const FilePicker: React.ComponentType<FilePickerProps>;
12
13export default FilePicker;
\No newline at end of file