/** * Escapes the given key for save usage in CSS (e.g. as part of a CSS variable name or selector). * Will use the native "CSS.escape()" if available in the browser, otherwise a fallback will be used. */ export declare const escapeCSS: (key: PropertyKey) => string;