import type { TextTranslator, TranslateOptions, TranslateResult } from '../types.js'; declare class AnthropicModel implements TextTranslator { private client; private model; constructor(key: string, baseUrl?: string, modelName?: string, options?: TranslateOptions); translate(prompt: string): Promise; } export default AnthropicModel; //# sourceMappingURL=anthropic.d.ts.map