/** * Interactive chat mode for agent command */ import type { AgentService } from '../../../agent/index.js'; export interface InteractiveOptions { workspace: string; sessionKey: string; continuingSession: boolean; } /** * Start interactive chat mode */ export declare function startInteractiveChat(agent: AgentService, options: InteractiveOptions): Promise;