import type { TemplateRepo } from "../storage/template-repo.js"; export declare class TemplateService { private templateRepo; constructor(templateRepo: TemplateRepo); edit(directory: string): boolean; delete(directory: string): boolean; get(directory: string): string | undefined; list(): { directory: string; content: string; }[]; resolve(directory: string): string | undefined; apply(template: string, content: string): string; }