import type { AgentRecord } from "../../types.js"; import { getDisplayName } from "../agent-format.js"; import type { AgentActivity } from "../agent-ui-types.js"; import type { DashboardTheme } from "../theme.js"; export { getDisplayName }; export declare function statusIcon(rec: AgentRecord, frame: number): string; export declare function statusLabel(rec: AgentRecord): string; export declare function statusColor(rec: AgentRecord, th: DashboardTheme): string; export declare function agentStats(rec: AgentRecord, activity?: AgentActivity): string; export declare function activityText(rec: AgentRecord, activity?: AgentActivity): string;