import { Skill, SkillMetadata, SkillRegistry } from './types.js'; export declare class DefaultSkillRegistry implements SkillRegistry { private skills; private bodyCache; private readonly maxCacheSize; constructor(skills: Skill[]); get(name: string): Skill | undefined; getAll(): Skill[]; getMetadata(): SkillMetadata[]; getBody(name: string): Promise; private setCache; getNames(): string[]; }