/** * ThemeScript - Server component that renders an inline script for FOUC prevention. * * This component renders a blocking inline script that: * 1. Reads theme from cookie/localStorage before paint * 2. Applies the theme to the HTML element immediately * 3. Prevents flash of unstyled content (FOUC) * * Must be placed in the element of your document, before any stylesheets. * * @example * ```tsx * // In your document component * import { ThemeScript } from "@rangojs/router/theme"; * * export function Document({ children }) { * return ( * * * * * * {children} * * ); * } * ``` */ import React from "react"; import type { ResolvedThemeConfig } from "./types.js"; export interface ThemeScriptProps { /** * Theme configuration - passed from router.themeConfig */ config: ResolvedThemeConfig; /** * Optional nonce for CSP */ nonce?: string; } /** * Server component that renders the theme initialization script. * * This renders a synchronous inline script that applies the theme * to the HTML element before React hydration, preventing FOUC. */ export declare function ThemeScript({ config, nonce }: ThemeScriptProps): React.ReactNode; //# sourceMappingURL=ThemeScript.d.ts.map