/** * Research command - Deep research agent */ export interface ResearchOptions { model?: string; verbose?: boolean; output?: 'json' | 'text' | 'pretty'; json?: boolean; depth?: number; maxSources?: number; } export declare function execute(args: string[], options: ResearchOptions): Promise;