import { GenericToolSchema, StandardizedToolCall } from '../../../types/tool';
import { OpenAIFunction, OpenAIToolCall } from './types';
export declare function convertToolSchema(schema: GenericToolSchema): OpenAIFunction;
export declare function convertToolCall(call: OpenAIToolCall): StandardizedToolCall;
export declare function convertToolCalls(toolCalls: OpenAIToolCall[] | undefined): StandardizedToolCall[];
