import { R as ReforgeProvider } from '../types-BthWWfka.cjs'; import { OpenAICompatibleCallOptions, OpenAICompatibleClient } from './openai-compatible.cjs'; import 'zod'; interface OpenRouterCallOptions extends OpenAICompatibleCallOptions { models?: string[]; provider?: Record; route?: "fallback" | "throughput" | "latency"; transforms?: string[]; httpReferer?: string; xTitle?: string; extraHeaders?: Record; } /** * OpenRouter-specific OpenAI-compatible adapter. */ declare function openrouter(client: OpenAICompatibleClient, model: string): ReforgeProvider; export { type OpenRouterCallOptions, openrouter };