/** * CLI stream renderer for agent events * * Consumes processDirectStreaming events and renders thinking, * tool calls, and response tokens to the terminal in real time. */ import type { AgentService } from '../../../agent/index.js'; /** * Consume the processDirectStreaming async generator and render * thinking / tool-call / response tokens to stdout. * * Returns the final aggregated response text. */ export declare function renderStreamToTerminal(agent: AgentService, message: string, sessionKey: string): Promise;