/** * YAML frontmatter parser for command templates */ import { CommandMetadata } from '../types/index.js'; /** * Parse command template with YAML frontmatter */ export declare function parseCommandTemplate(templatePath: string): Promise<{ metadata: CommandMetadata; content: string; }>; //# sourceMappingURL=yaml-parser.d.ts.map