import type * as ElevenLabs from "../index"; export type WorkflowEdgeModelInputForwardCondition = ElevenLabs.WorkflowEdgeModelInputForwardCondition.Expression | ElevenLabs.WorkflowEdgeModelInputForwardCondition.Llm | ElevenLabs.WorkflowEdgeModelInputForwardCondition.Result | ElevenLabs.WorkflowEdgeModelInputForwardCondition.Unconditional; export declare namespace WorkflowEdgeModelInputForwardCondition { interface Expression extends ElevenLabs.WorkflowExpressionConditionModelInput { type: "expression"; } interface Llm extends ElevenLabs.WorkflowLlmConditionModelInput { type: "llm"; } interface Result extends ElevenLabs.WorkflowResultConditionModelInput { type: "result"; } interface Unconditional extends ElevenLabs.WorkflowUnconditionalModelInput { type: "unconditional"; } }