import { GetSecondOpinionInput, LLMResponse, LLMError, AnthropicConfig } from '../types.js'; import { LLMProvider } from './base.js'; export declare class AnthropicProvider implements LLMProvider { private client; constructor(config: AnthropicConfig); supportsReasoningEffort(): boolean; supportsReasoningEffortForModel(model: string): boolean; getAvailableModels(): string[]; isValidModel(model: string): boolean; getResponse(params: GetSecondOpinionInput): Promise; }