/** * Output Renderer * * Formats NormalizedEntry objects for terminal display with colors and formatting. */ import type { NormalizedEntry } from '../../agents/types/agent-executor.js'; import type { RenderOptions, ExecutionResult, TaskHeader } from './types.js'; /** * Render a single normalized entry */ export declare function renderEntry(entry: NormalizedEntry, options?: RenderOptions): string; /** * Render task header in a bordered box */ export declare function renderHeader(header: TaskHeader): string; /** * Render execution summary */ export declare function renderSummary(result: ExecutionResult): string; //# sourceMappingURL=output.d.ts.map