import { CCliColor } from './c-cli-color'; /** Implements the {@link CCliColor} interface by wrapping the provided text in * [ANSI escape codes](https://en.wikipedia.org/wiki/ANSI_escape_code) */ export declare class CCliAnsiColor implements CCliColor { protected constructor(); blue(message: string): string; bold(message: string): string; green(message: string): string; red(message: string): string; static create(): CCliAnsiColor; } //# sourceMappingURL=c-cli-ansi-color.d.ts.map