/** * Context command - Manage context windows */ export interface ContextOptions { verbose?: boolean; output?: 'json' | 'text' | 'pretty'; json?: boolean; budget?: number; priority?: number; target?: number; strategy?: string; } export declare function execute(args: string[], options: ContextOptions): Promise;