import type { ChainableColorFunction } from "./types";
export declare const colors: ChainableColorFunction;
export declare const red: (text: string) => string;
export declare const green: (text: string) => string;
export declare const yellow: (text: string) => string;
export declare const blue: (text: string) => string;
export declare const magenta: (text: string) => string;
export declare const cyan: (text: string) => string;
export declare const white: (text: string) => string;
export declare const gray: (text: string) => string;
export declare const dim: (text: string) => string;
export declare const bold: (text: string) => string;
export default colors;
