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