import type { BaseLlmConnection, LlmRequest, LlmResponse } from '@google/adk'; import { BaseAdapter } from '../adapter.js'; export declare class AnthropicAdapter extends BaseAdapter { private readonly client; constructor(model: string, baseUrl: string, headers: Record, apiKey: string); stream(llmRequest: LlmRequest): AsyncGenerator; generate(llmRequest: LlmRequest): Promise; connect(llmRequest: LlmRequest): Promise; } //# sourceMappingURL=anthropic-adapter.d.ts.map