import type { SkillMetadata } from "../types.ts"; /** * Parse YAML frontmatter from markdown content. * * Frontmatter is delimited by `---` lines at the very start of the file. * * @returns `metadata` — parsed frontmatter keys (empty object if none/invalid) * `body` — everything after the closing `---` (or the entire * content when no frontmatter is present). */ export declare function parseFrontmatter(content: string): { metadata: SkillMetadata; body: string; }; //# sourceMappingURL=frontmatter.d.ts.map