/** * Chat command - Chat with an AI agent */ export interface ChatOptions { model?: string; stream?: boolean; session?: string; verbose?: boolean; profile?: string; config?: string; output?: 'json' | 'text' | 'pretty'; json?: boolean; } export declare function execute(args: string[], options: ChatOptions): Promise;