/**
 * Sanitizes a CSS string for injection into a `<style>` tag.
 * Prevents breakout from the style element via `</style>` injection.
 * This is defense-in-depth — cssStringFromTheme already strips
 * `<`, `>`, `/` from theme values.
 */
export declare function sanitizeCssStyleContent(css: string): string;
