UNPKG

448 BTypeScriptView Raw
1import { h, FunctionalComponent } from "preact";
2import type { ManifestEntry } from "./utils/build";
3export declare const __DocContext: import("preact").Context<{
4 head: {
5 current: any[];
6 };
7}>;
8export declare const Document: FunctionalComponent<{
9 manifest?: ManifestEntry;
10 preload?: string[];
11 preconnect?: string[];
12 debug?: boolean;
13 hasGlobalScript?: boolean;
14}>;
15export declare const Head: () => h.JSX.Element;