/** * Template Library - Pre-built Workflow Templates * * Collection of ready-to-use workflow templates for common use cases. */ import type { Workflow } from './generator.js'; export interface WorkflowTemplate { id: string; name: string; description: string; category: string; tags: string[]; difficulty: 'beginner' | 'intermediate' | 'advanced'; workflow: Workflow; } /** * Get all templates */ export declare function getAllTemplates(): Promise; /** * Get template by ID */ export declare function getTemplate(id: string): Promise; /** * Search templates */ export declare function searchTemplates(query: string): Promise; /** * Get templates by category */ export declare function getTemplatesByCategory(category: string): Promise; /** * Get all categories */ export declare function getCategories(): Promise; //# sourceMappingURL=templates.d.ts.map