/** * True iff `value` is a CSS color in one of the permitted forms: a hex color, a * numeric rgb()/rgba()/hsl()/hsla() function, or a named color from the closed * keyword set. Everything else — url(), var(), color(), escapes, comments, * semicolons, nested functions — is refused. */ export declare function isSafeCssColorValue(value: unknown): boolean; //# sourceMappingURL=css-color.d.ts.map