/** * Shared TUI theme: glyphs, colours, and formatting helpers. */ export declare const GLYPH: { readonly check: "✓"; readonly cross: "✗"; readonly tilde: "~"; readonly diamond: "◇"; readonly bar: "│"; readonly dot: "·"; readonly arrow: "→"; readonly blockFull: "█"; readonly blockLight: "░"; }; export declare const COLOUR: { readonly valid: "#22c55e"; readonly invalid: "#ef4444"; readonly risky: "#eab308"; readonly typo: "#f97316"; readonly accent: "#06b6d4"; readonly muted: "#6b7280"; readonly dimmed: "#374151"; readonly white: "#f9fafb"; readonly bg: "#111827"; }; export declare function padRight(str: string, len: number): string; export declare function padLeft(str: string, len: number): string; export declare function truncate(str: string, len: number): string; export declare function formatElapsed(ms: number): string; export declare function formatSpeed(count: number, ms: number): string;