import { T as TemplateRenderer } from "../packem_shared/types.d-BU-37j3S.js"; /** * Renders a [LiquidJS](https://liquidjs.com/) template to a string. * * `liquidjs` 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 Liquid template string. * @param data The data/variables exposed to the template. * @param options LiquidJS engine options (passed to the `Liquid` constructor). * @returns The rendered output. * @throws {TypeError} When the template is not a string. * @throws {NotificationError} When `liquidjs` is not installed or rendering fails. */ declare const renderLiquid: TemplateRenderer; export { renderLiquid as default, renderLiquid };