/** * Checks if the string is a hexadecimal color. * If given value is not a string, then it returns false. * * @param value The value being checked. * @returns True if the string is a hexadecimal color, false otherwise. */ export declare function isHexColor(value: string): boolean;