declare type exportParams = { ids?: Array; file_name?: string; form_id?: string | number; code?: string; url?: string; }; export declare const exportData: (params: exportParams) => Promise; export declare const batchImport: (params: any) => Promise; export declare const importTemplate: (params: exportParams) => Promise; export declare const getExportFile: (params: any) => Promise; export declare const getImportLog: (params: any) => Promise; export {};