import type { CSSProperties } from "react"; declare type StyleObject = CSSProperties | (CSSProperties & { [k: string]: string | number | CSSProperties; }); export declare function globalCss(window: Window, css: string): void; export declare function scopedStyles(prefix: string, styles: StyleObject, win?: Window): string; export {};