/** * Validates a hex color string. Accepts 3-digit and 6-digit hex values * with a leading `#`. */ export declare function isValidHex(value: string): boolean; /** * Returns an error message if the hex value is invalid, or undefined if valid. */ export declare function validateHex(value: string): string | undefined; //# sourceMappingURL=validation.d.ts.map