import type { Route } from '@anansi/router'; import React from 'react'; import { type CSPolicy } from './csp.js'; import type { ServerSpout } from './types.js'; type NeededNext = { matchedRoutes: Route[]; title?: string; scripts?: React.ReactNode[]; extraStyle?: React.ReactNode[]; }; export { type CSPolicy }; export default function DocumentSpout(options: { head?: React.ReactNode; title: string; lang?: string; rootId?: string; charSet?: string; csPolicy?: CSPolicy; }): ServerSpout, Record, NeededNext>; //# sourceMappingURL=document.server.d.ts.map