import { IconElement } from '../data/icon'; export interface FileDropInputProps { disabled?: boolean; icon?: IconElement; text?: string; onDrop: (fileList: File[]) => void; } export declare function FileDropInput({ disabled, onDrop, icon, text }: FileDropInputProps): JSX.Element; //# sourceMappingURL=fileDropInput.d.ts.map