import { Directive } from '../types.js'; /** * Set element's innerHTML from an expression. * * @remarks * Evaluates the expression and sets the element's `innerHTML`. * * @warning Only use with trusted content. User input can lead to XSS attacks. * * @example * ```html *
*
* ``` */ export declare const html: Directive<['$expr', '$element', '$eval']>;