import type { DirectiveHandler } from '../types'; /** * Handles bq-html directive - sets innerHTML (sanitized by default). * * The sanitized path routes through `trustedHtmlForSink` so the write produces * a Trusted Types value under an enforced `require-trusted-types-for 'script'` * CSP. The opt-out (`sanitize: false`) is a deliberate raw-write escape hatch * and is left untouched. * @internal */ export declare const handleHtml: (sanitize: boolean) => DirectiveHandler; //# sourceMappingURL=html.d.ts.map