import { BOLD, DIM, NC } from './ansi.js'; export { BOLD, DIM, NC }; export declare const RED: string; export declare const GREEN: string; export declare const YELLOW: string; export declare const BLUE: string; export declare const MAGENTA: string; export declare const CYAN: string; /** Map task status to a display symbol. Falls back to '?' for unknown values. */ export declare function statusSymbol(status: string): string; /** Map task status to a color escape. */ export declare function statusColor(status: string): string; /** Map task priority to a display symbol. */ export declare function prioritySymbol(priority: string): string; /** Map task priority to a color escape. */ export declare function priorityColor(priority: string): string; export declare const BOX: { tl: string; tr: string; bl: string; br: string; h: string; v: string; ml: string; mr: string; }; /** Create a horizontal rule with box-drawing characters. */ export declare function hRule(width?: number): string; /** Format a date string as YYYY-MM-DD. */ export declare function shortDate(isoDate: string | null | undefined): string; //# sourceMappingURL=colors.d.ts.map