import type { Template } from "@typeDefs"; type RenderFn = (context: TVars) => string; /** * Implementation of the Template interface using a ts function * * @category Core Implementations */ export declare class FnTemplate implements Template { readonly source: RenderFn; constructor(renderFn: RenderFn); render(context: TVars): string; } export {};