declare const recordedCSSSymbol: unique symbol; declare const isInstalledSymbol: unique symbol; interface ExtendedCSSStyleSheetConstructor { new (options?: CSSStyleSheetInit): CSSStyleSheet; [isInstalledSymbol]?: boolean; prototype: CSSStyleSheet; } interface ExtendedWindow extends Window { CSSStyleSheet: ExtendedCSSStyleSheetConstructor; } export declare function isExtendedWindow(w: Window): w is ExtendedWindow; export default function applyConstructedStylesPatch(win?: ExtendedWindow): void; export { recordedCSSSymbol }; //# sourceMappingURL=applyConstructedStylesPatch.d.ts.map