/** * Legacy SSR compatibility layer. * * The former styled-components integration offered helpers for collecting * styles during server-side rendering. AuraGlass has fully migrated to a * build-time CSS pipeline, so these utilities now no-op while keeping the API * surface for consumers that still import from `aura-glass/ssr`. */ import React from "react"; export interface StyleSheet { collectStyles: (children: React.ReactNode) => React.ReactElement; getStyleElement: () => React.ReactElement[]; getStyleTags: () => string; seal: () => void; instance: null; } export declare function createStyleSheet(): StyleSheet; export declare function collectStyles(): StyleSheet; export declare const AuraGlassSSRProvider: React.FC<{ children: React.ReactNode; }>; export declare function isStyledComponentsSSRReady(): boolean; export declare function getStyledComponentsVersion(): null; //# sourceMappingURL=StyleSheetManager.d.ts.map