/**
 * Checks if a string is a valid hex color.
 * @param {string} color - The color string to validate.
 * @returns {boolean} Returns true if the color string is a valid hex color, otherwise false.
 */
export declare function isHexColor(color: string): boolean;
