import type { DriverProvider } from "../types.js"; export interface AnthropicDriverProviderOptions { apiKey: string; /** Default: "claude-haiku-4-5-20251001". */ model?: string; /** Default: "https://api.anthropic.com/v1". */ baseUrl?: string; /** Override fetch for tests. */ fetch?: typeof globalThis.fetch; /** Max tokens for the response. Default: 256. */ maxTokens?: number; /** API version header. Default: "2023-06-01". */ anthropicVersion?: string; promptPath?: string; } export declare function anthropicDriverProvider(opts: AnthropicDriverProviderOptions): DriverProvider; //# sourceMappingURL=anthropic.d.ts.map