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