import { FileError } from 'react-dropzone/typings/react-dropzone'; export interface UploadProps { btnText?: React.ReactType; bucketId: string; customerId: string; clientId: string; allowedFileNameCharacters?: string; allowedFileTypes?: string[]; onFileUpload?: Function; onFileRemove?: Function; maxSize?: number; max?: number; multiple?: boolean; children?: Function; name?: string; showFileDrop?: boolean; getDropRejectionMessage?: ((errors: FileError[], file: File) => string); onPasswordSubmit?: Function; } declare const Upload: React.ComponentType; export default Upload;