import { TApi } from "../@types/common"; import { TBatchImportVerifyRes } from "./index"; import { UploadFile } from 'antd'; import { RcFile } from 'antd/es/upload/index'; import { FC } from 'react'; declare const BatchImportUploadFileStep: FC<{ uploadingImgUrl?: string; onCheckEnd: () => void; onCheckStart: () => void; onCheckFail: (e: any) => void; maxFileSize?: number; demoTemplateUrl?: string; fileList: UploadFile[]; setFileList: (fileList: UploadFile[]) => void; apiPostBatchImportCheck: (file: any) => Promise>; onSuccess: (data: TBatchImportVerifyRes, file: RcFile) => void; }>; export default BatchImportUploadFileStep;