import { RenderTemplate } from "../types/index.js"; /** * Service for loading and validating templates */ export declare class TemplateService { /** * Load template by name from templates directory */ loadTemplate(templateName: string): Promise; /** * Load template from file path */ loadTemplateFromFile(filePath: string): Promise; /** * Validate template object structure */ validateTemplate(template: any): RenderTemplate; }