import type { BaseLlmConnection, LlmRequest, LlmResponse } from '@google/adk'; import { BaseLlm } from '@google/adk'; export interface ModelMuxOptions { model: string; baseUrl: string; headers?: Record; apiKey?: string; } export declare class ModelMux extends BaseLlm { private readonly adapter; constructor(options: ModelMuxOptions); generateContentAsync(llmRequest: LlmRequest, stream?: boolean): AsyncGenerator; connect(_llmRequest: LlmRequest): Promise; } //# sourceMappingURL=index.d.ts.map