import type { DirectiveHandler } from '../types'; /** * Handles bq-once directive - evaluates expression once on mount and writes * the result as text content. Does NOT subscribe to signal updates — useful * for static interpolation that should not become a reactive dependency. * * @internal * @since 1.14.0 */ export declare const handleOnce: DirectiveHandler; /** * Handles bq-init directive - runs an expression once on mount. * Complements `bq-on:click`-style listeners for mount-time side effects. * * @internal * @since 1.14.0 */ export declare const handleInit: DirectiveHandler; /** * Handles bq-html-safe directive - always-sanitized innerHTML binding, * regardless of the mount-level `sanitize` option. Safer alternative to * `bq-html` when individual bindings must remain sanitized in a view that * is otherwise mounted with `sanitize: false`. * * @internal * @since 1.14.0 */ export declare const handleHtmlSafe: DirectiveHandler; /** * Handles bq-memo directive - marks an expression for one-time evaluation on * mount without creating reactive subscriptions. * * Currently implemented as a lightweight marker so authors can colocate * intent without creating reactive subscriptions. It still evaluates the * expression once on mount to surface any logged runtime errors without * subscribing to future updates. * * @internal * @since 1.14.0 */ export declare const handleMemo: DirectiveHandler; //# sourceMappingURL=lightweight.d.ts.map