/** * Minimal ANSI escape primitives used by the shared render helpers. * * Kept tiny and self-contained so `@cleocode/core/render` has zero coupling * to the cleo CLI's larger colors module. Respects `NO_COLOR` and * `FORCE_COLOR` envs the same way (https://no-color.org). * * @task T10129 */ /** Bold text. */ export declare const BOLD: string; /** Dim text. */ export declare const DIM: string; /** Reset (no-color). */ export declare const NC: string; //# sourceMappingURL=ansi.d.ts.map