export interface ImportConfig { maxImageSize: number; imageMimeTypes: string[]; imageAccept: string; imageFormatsText: string; labelFormat?: 'json' | 'jsonl' | 'folder' | 'dwg-json'; maxZipSize: number; showExampleImage?: boolean; labelFormatLabel?: string; zipUploadTexts: { labeled: { description: string[]; }; unlabeled: { description: string[]; }; }; } /** * 根据数据集类型获取导入配置 * @param markType 标注类型 * @param vlmLabelFormat VLM 专用:区分 jsonl 和 dwg-json 子格式 * @returns 导入配置 */ export declare const getImportConfig: (markType?: string, vlmLabelFormat?: string, vlmMarkTmpl?: string) => ImportConfig;