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