export type SkillSummary = { id: string; name: string; description: string; path: string; }; export type SkillContent = SkillSummary & { body: string; }; export declare function discoverSkills(): Promise; export declare function readSkill(skillId: string): Promise; export declare function searchSkills(query: string, limit?: number): Promise; export declare function skillPathsHint(): string[]; //# sourceMappingURL=loader.d.ts.map