interface ChatOptions { agent?: string; provider?: string; model?: string; stream?: boolean; format?: 'text' | 'markdown' | 'html'; memory?: 'buffer' | 'redis' | 'summary'; verbose?: boolean; } export declare function chatCommand(options: ChatOptions): Promise; export {}; //# sourceMappingURL=chat.d.ts.map