import type { AgentRecord } from "../types.js"; import type { AgentActivity } from "./agent-ui-types.js"; import { type Theme } from "./theme.js"; export declare const ERROR_STATUSES: Set; type WidgetTuiLike = { terminal: { columns: number; }; }; type RenderAgentWidgetOptions = { agents: AgentRecord[]; agentActivity: Map; frame: number; shouldShowFinished(agentId: string, status: string): boolean; theme: Theme; tui: WidgetTuiLike; pageIndex?: number; pageCount?: number; }; export declare function renderAgentWidget(options: RenderAgentWidgetOptions): string[]; export {};