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