type Color = "red";
/**
 * Wraps text in ANSI escape codes if the terminal supports color.
 * Returns the text unstyled otherwise.
 */
export declare function colorText(color: Color, text: string): string;
export {};
