import type { FC } from 'react'; interface FileData { uid: string; name: string; status: 'error' | 'success' | 'done' | 'uploading' | 'removed'; fileCode: string; url: string; } interface ImgUploadProps { appId: string; onChange?: (e: FileData) => void; value?: FileData; } declare const ImgUpload: FC; export default ImgUpload;