/** * Agent Command * Interactive agent mode for AI-powered conversations */ import { Command } from 'commander'; export declare const agentCommand: Command; /** * Start agent mode directly (for default command) */ export declare function runAgentMode(options: { mcp?: boolean; debug?: boolean; message?: string; resumeConversationId?: string; gatewayEnabled?: boolean; gatewayPollInterval?: number; gatewaySessionName?: string; wechatEnabled?: boolean; modelTier?: 'lite' | 'flash' | 'pro'; }): Promise; //# sourceMappingURL=agent.d.ts.map