import type * as ElevenLabs from "../index";
export interface ConversationHistoryTranscriptApiIntegrationWebhookToolsResultCommonModel {
    requestId: string;
    toolName: string;
    resultValue: string;
    isError: boolean;
    toolHasBeenCalled: boolean;
    toolLatencySecs?: number;
    errorType?: string;
    rawErrorMessage?: string;
    dynamicVariableUpdates?: ElevenLabs.DynamicVariableUpdateCommonModel[];
    type: "api_integration_webhook";
    integrationId: string;
    credentialId: string;
    integrationConnectionId: string;
}
