/** Wraps text in red (`\x1b[31m`). */ export declare const red: (text: string) => string; /** Wraps text in bright red (`\x1b[91m`). */ export declare const brightRed: (text: string) => string; /** Wraps text in green (`\x1b[32m`). */ export declare const green: (text: string) => string; /** Wraps text in cyan (`\x1b[36m`). */ export declare const cyan: (text: string) => string; /** Wraps text in yellow (`\x1b[33m`). */ export declare const yellow: (text: string) => string; /** Wraps text in dim style (`\x1b[2m`). */ export declare const dim: (text: string) => string; /** Wraps text in bold style (`\x1b[1m`). */ export declare const bold: (text: string) => string; //# sourceMappingURL=ansi.d.ts.map