/** * ANSI escape-code constants and tiny status helpers. * * Kept in one place so every interactive surface (init, resolve, hook-handler * diagnostics) renders consistent colours and icons. */ export declare const RESET = "\u001B[0m"; export declare const BOLD = "\u001B[1m"; export declare const DIM = "\u001B[2m"; export declare const GREEN = "\u001B[32m"; export declare const YELLOW = "\u001B[33m"; export declare const CYAN = "\u001B[36m"; export declare const RED = "\u001B[31m"; export declare const HIDE_CURSOR = "\u001B[?25l"; export declare const SHOW_CURSOR = "\u001B[?25h"; export declare const CLEAR_LINE = "\u001B[2K"; export declare const MOVE_UP: (n: number) => string; export declare const ok: (msg: string) => void; export declare const warn: (msg: string) => void; export declare const fail: (msg: string) => void; export declare const info: (msg: string) => void;