import type * as ElevenLabs from "../index"; export type WorkflowEdgeModelOutputForwardCondition = ElevenLabs.WorkflowEdgeModelOutputForwardCondition.Expression | ElevenLabs.WorkflowEdgeModelOutputForwardCondition.Llm | ElevenLabs.WorkflowEdgeModelOutputForwardCondition.Result | ElevenLabs.WorkflowEdgeModelOutputForwardCondition.Unconditional; export declare namespace WorkflowEdgeModelOutputForwardCondition { interface Expression extends ElevenLabs.WorkflowExpressionConditionModelOutput { type: "expression"; } interface Llm extends ElevenLabs.WorkflowLlmConditionModelOutput { type: "llm"; } interface Result extends ElevenLabs.WorkflowResultConditionModelOutput { type: "result"; } interface Unconditional extends ElevenLabs.WorkflowUnconditionalModelOutput { type: "unconditional"; } }