/** * Standardized status header rendering for tool output. */ import type { Theme, ThemeColor } from "../modes/theme/theme"; import type { ToolUIStatus } from "../tools/render-utils"; export interface StatusLineOptions { icon?: ToolUIStatus; spinnerFrame?: number; title: string; titleColor?: ThemeColor; description?: string; badge?: { label: string; color: ThemeColor; }; meta?: string[]; } export declare function renderStatusLine(options: StatusLineOptions, theme: Theme): string;