import { type Mountable, type Producer } from './build-context.js'; /** * Render a raw HTML string as live DOM nodes, inline between anchor comments (no * wrapper element). Reactive: when the bound string changes, the previously * inserted fragment is removed and the new HTML parsed in. The parsed nodes carry * NO reactive bindings — `unsafeHtml` is an escape hatch for pre-rendered markup * (markdown, syntax highlighting). The caller is responsible for trust/sanitization. */ export declare function signalUnsafeHtml(produce: Producer, deps: readonly string[], componentRooted?: boolean): Mountable; //# sourceMappingURL=unsafe-html.d.ts.map