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