export interface FrontmatterSuccess { success: true; frontmatter: Record; body: string; } export interface FrontmatterError { success: false; error: string; } export type FrontmatterResult = FrontmatterSuccess | FrontmatterError; /** * Parse YAML frontmatter from SKILL.md content * * Expected format: * ``` * --- * name: skill-name * description: Description here * --- * Body content... * ``` * * @param content - Full SKILL.md content * @returns Parsed frontmatter and body, or error */ export declare function parseFrontmatter(content: string): FrontmatterResult; //# sourceMappingURL=frontmatter-parser.d.ts.map