export declare const c: { reset: string; bold: string; dim: string; italic: string; red: string; green: string; yellow: string; blue: string; magenta: string; cyan: string; white: string; gray: string; orange: string; offpeak: string; peak: string; }; export declare function color(text: string, ...codes: string[]): string; /** ANSI color code for a percentage threshold: red ≥90%, yellow ≥70%, green below */ export declare function pctColor(pct: number): string; /** Strip ANSI codes to get visible length */ export declare function visibleLength(str: string): number; /** Pad a string (accounting for ANSI) to exact visible width */ export declare function padRight(str: string, width: number): string;