/** * Core import logic — import tasks from export files. * * Extracted from CLI import command for dispatch layer access. * * @task T5323, T5328 */ import type { AdminImportParams } from '@cleocode/contracts'; export interface ImportResult { imported: number; skipped: number; renamed: Array<{ oldId: string; newId: string; }>; totalTasks: number; dryRun?: boolean; } /** * Import tasks from an export file. */ export declare function importTasks(projectRoot: string, params: AdminImportParams): Promise; //# sourceMappingURL=import.d.ts.map