export interface TemplateValidationFinding { file: string; message: string; } export interface TemplateValidationReport { ok: boolean; findings: TemplateValidationFinding[]; } export interface TemplateCatalogEntry { id: string; kind: string; title: string; file: string; } export declare function listTemplateCatalog(root: string): Promise; export declare function validateTemplateCatalog(root: string): Promise; export declare function validateWorkflowTemplate(root: string, workflowId: string): Promise; export declare function workflowGraph(root: string, workflowId: string): Promise; //# sourceMappingURL=validate-templates.d.ts.map