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; } declare const Upload: React.ComponentType; export default Upload;