/** * Escape a string for use as a CSS identifier. * * Uses the native CSS.escape implementation when available, with the CSSOM * algorithm inlined for runtimes that do not expose it (notably jsdom). */ export declare function escapeCssIdentifier(value: string): string; //# sourceMappingURL=escape-css-identifier.d.ts.map