import type { ResolvedSkill } from "../types.ts"; /** * Resolve skill names to their file locations using fast-glob. * * For each skill name the four candidate locations are checked in priority * order. The first existing file wins. Skills that cannot be found in any * location are silently skipped (no error is thrown). */ export declare function resolveSkills(skillNames: string[], roleDir: string, globalSkillsDir: string): Promise; /** * Read the full SKILL.md content from the resolved skill's file path. * * @throws If the file cannot be read (e.g. it was deleted since resolution). */ export declare function loadSkillContent(skill: ResolvedSkill): Promise; //# sourceMappingURL=skill-resolver.d.ts.map