import type { ResolvedSkill } from "../types/config.js"; import type { Logger } from "../types/output.js"; export interface ResolveSkillsOptions { sources: string[]; configDir: string; cacheDir: string; logger: Logger; refresh?: boolean; } export declare function resolveSkills(options: ResolveSkillsOptions): Promise; /** * Find the directory containing SKILL.md. * Checks the root directory first, then one level of subdirectories * (for repos where the skill lives in a subdirectory). */ export declare function findSkillDir(dir: string): string | null; //# sourceMappingURL=resolver.d.ts.map