import React, { FC } from 'react'; interface PendingUploadProps { name?: string; required?: boolean; type?: 'file' | 'image'; allowedExtension?: string[]; /** onChange return has File type*/ asFile?: boolean; multiple?: boolean; onChange?: (file: any) => void; onDownload?: (file: any) => void; disabled?: boolean; defaultValue?: any[]; hidePreview?: boolean; description?: string; fetchBeforeLoad?: boolean; /** * Maximum file size (in bytes) * 1024000 is 1 MegaBytes */ maxSize?: number; emptyDisabledStateIcon?: React.ReactNode; hideUploadAreaOnDisabled?: boolean; } declare const PendingUpload: FC; export default PendingUpload;