/** * DOM-free SSR renderer. * * Operates on the virtual node tree produced by `html-parser.ts` and * evaluates `bq-*` directives without depending on any browser DOM API. * Runs unmodified on Bun, Deno and Node and is the default backend used by * `renderToString()` whenever the global `DOMParser` is not configured to * take precedence. * * @module bquery/ssr * @internal */ import type { BindingContext } from '../view/types'; export declare const sanitizeHtmlForSSR: (raw: string) => string; /** * Renders a template through the DOM-free pipeline. * * @internal */ export declare const renderTemplatePure: (template: string, data: BindingContext, options?: { prefix?: string; stripDirectives?: boolean; annotateHydration?: boolean; }) => string; //# sourceMappingURL=renderer.d.ts.map