import type { SkillScope, LoadedSkill } from "./types"; import type { SkillMcpConfig } from "../skill-mcp-manager/types"; export declare function mapWithConcurrency(items: T[], mapper: (item: T) => Promise, concurrency: number): Promise; export declare function loadMcpJsonFromDirAsync(skillDir: string): Promise; export declare function loadSkillFromPathAsync(skillPath: string, resolvedPath: string, defaultName: string, scope: SkillScope): Promise; export declare function discoverSkillsInDirAsync(skillsDir: string): Promise;