import type { Skill } from '../../types/plugins/skills.js'; type DiscoverSkillsInput = { cwd: string; excludeFiles?: string[]; }; /** * Produce the full, unfiltered skill set: one skill per `@skills//SKILL.md` * plus an optional root `SKILL.md`. Slugs must be unique: the root skill wins over a * colliding `@skills` entry. * * Skill filenames in folders are matched case-insensitively against directory listings, * so behavior is identical on case-sensitive and case-insensitive filesystems — the * lowercase served path is a routing concern, not an authoring rule. */ export declare function discoverSkills(input: DiscoverSkillsInput): Promise; export {}; //# sourceMappingURL=discover-skills.d.ts.map