import type { SkillRegistryAdapter } from './registry-adapter.js'; /** Default skills.sh base URL. Override via `config.skills.registryUrl`. */ export declare const DEFAULT_SKILLS_SH_URL = "https://skills.sh"; /** Injectable fetcher (mirrors the `prompt-installer` JsonFetcher pattern). */ export type SkillsShFetcher = (url: string) => Promise; export interface SkillsShAdapterOptions { /** Base URL (no trailing slash). Defaults to {@link DEFAULT_SKILLS_SH_URL}. */ baseUrl?: string | undefined; /** Injectable fetcher for tests. */ fetcher?: SkillsShFetcher | undefined; } export declare function createSkillsShAdapter(opts?: SkillsShAdapterOptions): SkillRegistryAdapter; //# sourceMappingURL=skills-sh-adapter.d.ts.map