//#region src/resolver.d.ts type Context = Record; type FilterFunction = (value: any, ...args: any[]) => any; type FilterRegistry = Record; //#endregion //#region src/engine.d.ts declare function render(templateStr: string, context?: Context, filters?: FilterRegistry): string; //#endregion export { type Context, type FilterFunction, type FilterRegistry, render };