export interface RehydrateOpts { /** Registry base URL. Defaults to SKILLS_REGISTRY_URL env or the prod default. */ registryUrl?: string; /** Token source. Defaults to the shared getToken() helper. Injectable for tests. */ tokenProvider?: () => Promise; /** fetch impl. Defaults to global fetch. Injectable for tests. */ fetchImpl?: typeof fetch; logger?: { warn: (msg: string, meta?: Record) => void; }; } export interface RehydrateResult { installed: string[]; skipped: string[]; } export declare function rehydratePrivateSkills(skillsDir: string, opts?: RehydrateOpts): Promise; //# sourceMappingURL=rehydrate.d.ts.map