export interface HtmlTemplateOptions { /** Raw page title */ title: string; /** Raw page description */ description: string; /** Site title, appended as suffix when different from page title */ siteTitle?: string; /** Base path, e.g. "/" or "/docs/" */ base: string; /** Module script src, e.g. "/@typedown/app" or "assets/app-abc.js" */ entryScript: string; /** HTML language attribute */ lang?: string; /** Canonical URL for SEO */ canonicalUrl?: string; /** Extra tags injected into
(CSS links, module preloads) */ headExtra?: string; /** SSR-rendered content inside div#app */ appContent?: string; } export declare function generateHtmlTemplate(options: HtmlTemplateOptions): string; //# sourceMappingURL=html-template.d.ts.map