/** * Converts CSS color string to a hex value. * @param color - CSS color string (hex, rgb, rgba, hsl, hsla, or named color). */ declare function getHexValue(color: string): string; export default getHexValue;