/** * Context analysis command - Analyze context window costs and dependency fragmentation */ import { Command } from 'commander'; interface ContextOptions { maxDepth?: string; maxContext?: string; include?: string; exclude?: string; output?: string; outputFile?: string; score?: boolean; } /** * Define the context command. * * @param program - Commander program instance */ export declare function defineContextCommand(program: Command): void; /** * Action handler for context analysis. */ export declare function contextAction( directory: string, options: ContextOptions ): Promise; export {}; //# sourceMappingURL=context.d.ts.map