import { Ctx } from "./ctx"; declare const defaultTpl: ({ title, head, bodyAttrs, body }: { title: any; head: any; bodyAttrs: any; body: any; }) => string; export declare type HtmlOptions = { head?: string; title?: string; body?: string; bodyAttrs?: Record; ctx?: Ctx; tpl?: typeof defaultTpl; }; export declare const html: (options?: HtmlOptions) => string; export declare const notFoundHtml: (options?: HtmlOptions) => string; export {};