export declare const colors: { readonly reset: "\u001B[0m"; readonly bold: "\u001B[1m"; readonly dim: "\u001B[2m"; readonly red: "\u001B[31m"; readonly green: "\u001B[32m"; readonly yellow: "\u001B[33m"; readonly cyan: "\u001B[36m"; }; export declare function colorize(text: string, ...codes: string[]): string; export declare function stripAnsi(text: string): string; //# sourceMappingURL=ansi.d.ts.map