import { LLMResponse, LLMOptions, OpenAIResponseFormat } from "../types"; /** * Makes a call to the Anthropic Messages API. * * Translates the unified LLMOptions (which use OpenAI-format tools and context) * into Anthropic's native format, executes the call, and returns a normalized * LLMResponse. * * @param content The content to pass to the LLM. * @param responseFormat The format of the response. * @param options The options for the LLM call. * @return A promise that resolves to the response from the Anthropic API. */ export declare function makeAnthropicCall(content: string, responseFormat?: OpenAIResponseFormat, options?: LLMOptions): Promise>;