import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import * as serializers from "../index"; import { DynamicVariableUpdateCommonModel } from "./DynamicVariableUpdateCommonModel"; export declare const ConversationHistoryTranscriptWorkflowToolsResultCommonModelOutput: core.serialization.ObjectSchema; export declare namespace ConversationHistoryTranscriptWorkflowToolsResultCommonModelOutput { interface Raw { request_id: string; tool_name: string; result_value: string; is_error: boolean; tool_has_been_called: boolean; tool_latency_secs?: number | null; error_type?: string | null; raw_error_message?: string | null; dynamic_variable_updates?: DynamicVariableUpdateCommonModel.Raw[] | null; type: "workflow"; result?: serializers.WorkflowToolResponseModelOutput.Raw | null; } }