/** * Default Map-backed implementation of the LLMProviderRegistry contract. * * Preserves insertion order via Map (used by `list()`). Duplicate ids are * first-write-wins so higher-priority extensions keep their provider binding. * * @module extensions/llm/llm-provider-registry */ import type { LLMProviderRegistry } from "./llm-provider.js"; /** Create llmprovider registry. */ export declare function createLLMProviderRegistry(): LLMProviderRegistry; //# sourceMappingURL=llm-provider-registry.d.ts.map