import type { SkillLike, SkillMeta, SkillStoreLike } from '../types/skills.js'; /** Load every skill a store lists into plain `SkillLike[]` data (name, description, body, * and passthrough metadata). Used wherever a store's contents must become JSON-serializable * (content hashing, persisting a resolver's output) rather than lazily disclosed. */ export declare function materializeSkillStore(source: SkillStoreLike): Promise<{ metas: SkillMeta[]; skills: SkillLike[]; }>;