import type { ProviderKey } from "./providers/router.js"; export type ProviderMatchers = { isUnprefixedModel: (model: string) => boolean; matchesOpenRouter: (model: string) => boolean; matchesOllama: (model: string) => boolean; matchesGoogle: (model: string) => boolean; matchesCodex: (model: string) => boolean; matchesClaudeCode: (model: string) => boolean; }; export declare function createProviderMatchers(effectiveFallbackProvider: ProviderKey | null): ProviderMatchers; //# sourceMappingURL=model_matchers.d.ts.map