/** * Default Polen global data structure * This ensures we always have a consistent shape for hydration */ export declare const DEFAULT_POLEN_DATA: { readonly serverContext: { readonly theme: "light"; readonly isDev: false; }; }; export type PolenGlobalData = { serverContext: { theme: 'light' | 'dark' | 'system'; isDev: boolean; }; }; //# sourceMappingURL=constants.d.ts.map