import { type NixTemplate } from "@deijose/nix-js"; /** * Creates a NixTemplate that renders the given HTML string without escaping. * * **Security:** Only use `raw()` with trusted content (e.g. Markdown you * authored, or HTML you generated and sanitized). Never use it with * user-supplied input without sanitization. */ export declare function raw(html: string): NixTemplate;