import { Skill } from './types.js'; export declare function parseSkillFile(filePath: string): Promise; /** * Parse only the YAML frontmatter from a skill file. * Discards the body text immediately — body is loaded lazily via getBody(). */ export declare function parseFrontmatter(filePath: string): Promise;