type Props = { children: React.ReactNode; assets: { href: string; as?: string; rel?: string; }[]; head?: React.ReactNode; extraStyle: React.ReactNode; scripts?: React.ReactNode; title: string; rootId?: string; charSet?: string; lang?: string; }; export default function Document({ assets, head, children, title, rootId, charSet, scripts, extraStyle, lang, }: Props): import("react").JSX.Element; export {}; //# sourceMappingURL=DocumentComponent.d.ts.map