import { TApi } from "../@types/common"; import { TBatchImportVerifyRes, TBatchImportVerifyResData, TBatchVerifyStatus } from "./index"; import { UploadFile } from 'antd'; import { FC } from 'react'; declare const BatchImportVerify: FC<{ verifyingSuccessImgUrl?: string; verifyingImgUrl?: string; maxImportCount?: number; verifyData?: TBatchImportVerifyRes; verifyDataStatus?: TBatchImportVerifyResData; verifyStatus?: TBatchVerifyStatus; onStartImport: () => void; onImportSuccess: (res: TBatchImportVerifyRes) => void; onImportFail: (e?: string) => void; fileList: UploadFile[]; onReUpload: () => void; onReVerify: () => void; onImport: (file: UploadFile, verifyRes: TBatchImportVerifyRes) => Promise>; }>; export default BatchImportVerify;