/** * Plan Command * Generate migration plan with icon mappings */ interface PlanOptions { root: string; include: string[]; exclude: string[]; config?: string; report: 'text' | 'json' | 'md'; output?: string; verbose: boolean; strict: boolean; style: string; confidence: string; interactive: boolean; } export declare function planCommand(options: PlanOptions): Promise; export {}; //# sourceMappingURL=plan.d.ts.map