import { DocumentFragment } from 'parse5/dist/tree-adapters/default.js'; /** * Use the html tagged template literal to create a HtmlTemplateResult. * @example * import {html} from 'zitrusmix'; * * html`

Hello

`; */ export declare class HtmlTemplateResult { fragment: DocumentFragment; raw: string; constructor(partial?: Partial); }