import type { CommandModule } from 'yargs'; interface PlanArgs { synth?: boolean; outDir?: string; model?: string; historyDays?: number; output?: 'text' | 'json'; } export declare const planCommand: CommandModule, PlanArgs>; export {};