import { type FrontmatterValue } from './frontmatter.ts'; export type SkillDefinition = { name: string; description: string; body: string; path: string; extra: Record; }; export declare function loadSkills(claudeDir: string): Promise;