/** * Checks if a string is a CSS named color and returns its equivalent hex value, * otherwise returns the original color. */ declare function nameToHex(color: string): string; export { nameToHex };