import type { ReactNode, ReactElement } from "react"; /** * Default document component that provides a basic HTML structure. * Used when no custom document is provided to createRouter. * Includes MetaTags for automatic charset, viewport, and route meta support. * * Uses suppressHydrationWarning on because the theme script * may modify class/style attributes before React hydrates. */ export declare function DefaultDocument({ children }: { children: ReactNode; }): ReactElement; //# sourceMappingURL=DefaultDocument.d.ts.map