import { type ToolItem, type ToolStatus } from "../../ui-core/state/transcript-types.js"; import { type BlockContext } from "./block-context.js"; export declare const TOOL_COLLAPSED_BODY_ROWS = 3; export declare const TOOL_EXPANDED_BODY_ROWS = 40; export declare const TOOL_LIVE_BODY_ROWS = 8; export declare function toolGlyph(ctx: BlockContext, status: ToolStatus): string; export declare function toolElapsed(ctx: BlockContext, item: ToolItem): string | undefined; export declare function toolSuffix(ctx: BlockContext, item: ToolItem, statusLabel: string): string; export declare function toolHeaderLines(ctx: BlockContext, item: ToolItem): string[]; export interface ToolBodyOptions { readonly maxRows?: number | undefined; } export declare function outputToggleLabel(expanded: boolean): string; export declare function buildToolBodyLines(ctx: BlockContext, item: ToolItem, options?: ToolBodyOptions): string[]; export declare function buildToolLines(ctx: BlockContext, item: ToolItem, options?: ToolBodyOptions): string[];