import type { ChatLine } from "../types.js"; export declare function lineColor(line: ChatLine): string; export declare function truncLine(value: string, max: number): string; export declare function compactInline(value: string, max?: number): string; export declare function formatToolArgs(raw: string): string[]; export declare function wrapTextToLines(text: string, width: number): string[];