import { TAG_COLOR } from "./types"; export declare const colors: { name: TAG_COLOR; rgb: { r: number; g: number; b: number; }; }[]; export declare function getTagColorImageSrc(target: any): string; export declare function isValidCSSColor(value: string): boolean; export declare function hexToThreeColor(hexColor: string): number;