import { ReactNode } from 'react'; export declare class FileItem { status: FileItemStatus; message: string; uid: string; name?: string; url?: string; type?: string; path?: string; percentage?: string | number; formData?: FormData; responseText?: string; loadingIcon?: ReactNode; failIcon?: ReactNode; } export type FileItemStatus = 'ready' | 'uploading' | 'success' | 'error' | 'removed'; export type FileType = { [key: string]: T; };