import type { TemplateFunction } from "./compile.js"; import type { Eta } from "./core.js"; export declare function render(this: Eta, template: string | TemplateFunction, // template name or template function data: T, meta?: { filepath: string; }): string; export declare function renderAsync(this: Eta, template: string | TemplateFunction, // template name or template function data: T, meta?: { filepath: string; }): Promise; export declare function renderString(this: Eta, template: string, data: T): string; export declare function renderStringAsync(this: Eta, template: string, data: T): Promise; //# sourceMappingURL=render.d.ts.map