/** * template/instantiator.ts — Template instantiation and the `html` tagged literal. * * Responsibilities: * - Clone a compiled static template and wire up live bindings. * - Expose `compileTemplate()` and `html` as the public authoring API. */ import { type HTMLResult } from './result'; /** * Instantiate a compiled template: clone the cached DOM template, navigate * to each binding target using pre-recorded paths, and build bindings with * direct node references. Returns an HTMLResult ready to mount. */ export declare const compileTemplate: (strings: TemplateStringsArray, values: unknown[]) => HTMLResult; export declare const html: (strings: TemplateStringsArray, ...values: unknown[]) => HTMLResult; //# sourceMappingURL=instantiator.d.ts.map