export declare class RenderError extends Error { constructor(message: string); } export type RenderVars = Record; export declare function render(file: string, template: string, vars: RenderVars): string; export declare function loadTemplate(file: string): string; export declare function renderTemplate(file: string, vars: RenderVars): string; //# sourceMappingURL=render.d.ts.map