import { RGB } from "../../enums/rgb.js"; declare const rgbToANSI: (attribute: "color" | "bgColor", rgb: RGB) => string; declare const getColoredText: (text: string, color: RGB) => string; declare const getBgColoredText: (text: string, bgColor: RGB) => string; export { rgbToANSI, getBgColoredText, getColoredText };