import { TServiceParams } from "@digital-alchemy/core"; export type RGB = Record<"r" | "g" | "b", number>; export declare function Colors({ terminal }: TServiceParams): { buildHex(current: string): Promise; buildRGB(current: RGB): Promise; };