import type { ResolvedSkillSource, ResolveSkillSourceContext, SkillSource } from './types.js'; export interface ResolveSkillSourceOptions { /** Map of workspace skill name -> absolute SKILL.md path (required for { workspace } sources). */ workspaceSkillPaths?: Record; } /** * Unified entry point: materialize any typed SkillSource to a staged directory and * return a stable reconciliation identity (spec §11c). Composes existing primitives — * it never reimplements a resolver. */ export declare function resolveSkillSource(source: SkillSource, ctx: ResolveSkillSourceContext, opts?: ResolveSkillSourceOptions): Promise; //# sourceMappingURL=resolve-skill-source.d.ts.map