import { AxiosInstance } from 'axios';
export declare function handleLeadTool(toolName: string, args: unknown, apiClient: AxiosInstance, withRetry: <T>(operation: () => Promise<T>, context: string) => Promise<T>): Promise<{
    content: {
        type: string;
        text: string;
    }[];
    isError: boolean;
}>;
