import { RcFile } from 'antd/lib/upload'; import React from 'react'; import { ImportDataContentRef } from './types'; declare const _default: React.ForwardRefExoticComponent & { visible: boolean; maxFileSize?: number | undefined; onUploadStatusChange: (status: "success" | "pending" | "failed" | null) => void; onUploadLoadingChange: (loading: boolean) => void; beforeUpload?: ((file: RcFile, FileList: RcFile[]) => (string | boolean | void | File | Blob) | Promise) | undefined; } & React.RefAttributes>; export default _default;