import { SchemaRule } from "../../types/rule-types.mjs"; //#region ../@warlock.js/seal/src/rules/color/color-rules.d.ts /** * Generic color rule - validates any color format */ declare const colorRule: SchemaRule; /** * Hex color rule */ declare const hexColorRule: SchemaRule; /** * RGB color rule */ declare const rgbColorRule: SchemaRule; /** * RGBA color rule */ declare const rgbaColorRule: SchemaRule; /** * HSL color rule */ declare const hslColorRule: SchemaRule; /** * Light color rule */ declare const lightColorRule: SchemaRule; /** * Dark color rule */ declare const darkColorRule: SchemaRule; //#endregion export { colorRule, darkColorRule, hexColorRule, hslColorRule, lightColorRule, rgbColorRule, rgbaColorRule }; //# sourceMappingURL=color-rules.d.mts.map