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