import { ChatMessage, ChatOptions, ProviderResponse } from '../../../types/chat';
import { AnthropicConfig } from './config';
import { Tool } from './types';
export declare function chat(config: AnthropicConfig, messages: ChatMessage[], options: ChatOptions, tools?: Tool[]): Promise<ProviderResponse>;
