import type { SkillFrontmatter } from "./SkillFrontmatter.js"; export interface ParsedSkillMarkdown { frontmatter: SkillFrontmatter; body: string; } export declare function parseSkillFrontmatter(content: string): ParsedSkillMarkdown;