import { T as TemplateRenderer } from "../packem_shared/types.d-BU-37j3S.js"; /** * Renders a [Handlebars](https://handlebarsjs.com/) template to a string. * * `handlebars` is an optional peer, loaded lazily so a missing install surfaces here * as a {@link NotificationError} rather than at import time. Pure JS — edge-safe and * runnable on Cloudflare Workers. * @param template The Handlebars template string. * @param data The data/variables exposed to the template. * @param options Handlebars compile options. * @returns The rendered string. * @throws {TypeError} When the template is not a string. * @throws {NotificationError} When `handlebars` is not installed or rendering fails. */ declare const renderHandlebars: TemplateRenderer; export { renderHandlebars as default, renderHandlebars };