export type AgentBoxVisualStatus = "idle" | "busy" | "error" | "done"; export interface AgentBoxUpdate { runId: string; taskId: string; role: string; title: string; status: AgentBoxVisualStatus; taskIndex: number; totalTasks: number; dependencyCount?: number; summary?: string; error?: string; healRound?: number; elapsedMs?: number; } export declare function getAgentBoxKey(update: Pick): string; export declare function formatAgentBoxName(update: AgentBoxUpdate): string; export declare function formatAgentBoxLines(update: AgentBoxUpdate): { title: string; meta: string; detail: string; }; export declare function sortAgentBoxUpdates(updates: AgentBoxUpdate[]): AgentBoxUpdate[];