import type { LLMClient } from '../types/index.js'; export declare class AnthropicClient implements LLMClient { private client; private apiKey; private model; private totalInputTokens; private totalOutputTokens; constructor(apiKey: string, model: string); isAvailable(): boolean; setApiKey(key: string): Promise; extractJSON(systemPrompt: string, userContent: string): Promise; getUsage(): { inputTokens: number; outputTokens: number; }; getModel(): string; } //# sourceMappingURL=anthropic-client.d.ts.map