/** * Lightweight frontmatter parser that supports simple YAML-style key/value fields. * Designed for small agent/skill metadata files without pulling in extra dependencies. */ export interface ParsedFrontmatter> { attributes: Partial; body: string; } export declare function parseFrontmatter>(content: string): ParsedFrontmatter; //# sourceMappingURL=frontmatter.d.ts.map