import { type AgentConfig } from './agent.js';
interface SkillInfo {
    dirName: string;
    name: string;
    description: string;
}
export declare function parseSkills(skillsDir: string): SkillInfo[];
export declare function linkSkillsForSpecificAgents(root: string, agentConfigs: AgentConfig[]): number;
export {};
