/** * YAML frontmatter parser for command templates */ import { CommandMetadata } from '../types/index.js'; /** * Parse command template file and extract frontmatter + content */ export interface ParsedTemplate { metadata: CommandMetadata; content: string; } /** * Parse a markdown file with YAML frontmatter */ export declare function parseCommandTemplate(filePath: string): Promise; /** * Check if a template file exists */ export declare function templateExists(templateName: string): Promise; /** * Get template file path */ export declare function getTemplatePath(templateName: string): string; //# sourceMappingURL=yaml-parser.d.ts.map