import type { CompletionEngine } from '../types.js'; export interface AnthropicCompletionEngineOptions { apiBase?: string; apiKey: string; targetModel: string; } export declare function createAnthropicCompletionEngine(options: AnthropicCompletionEngineOptions): CompletionEngine;