type Colors = "black" | "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "white" | "crimson";
export default function color(color: Colors, text: string): string;
export {};
