import type { Provider, ChatRequest, ChatResponse, ChatStreamChunk } from '../core/types'; export declare class OpenRouterProvider implements Provider { id: "openrouter"; name: string; private isGpt5; chat(req: ChatRequest, apiKey?: string, baseUrl?: string): Promise; streamChat(req: ChatRequest, apiKey?: string, baseUrl?: string): AsyncGenerator; }