import type * as ElevenLabs from "../index"; export type WorkflowEdgeModelInputBackwardCondition = ElevenLabs.WorkflowEdgeModelInputBackwardCondition.Expression | ElevenLabs.WorkflowEdgeModelInputBackwardCondition.Llm | ElevenLabs.WorkflowEdgeModelInputBackwardCondition.Result | ElevenLabs.WorkflowEdgeModelInputBackwardCondition.Unconditional; export declare namespace WorkflowEdgeModelInputBackwardCondition { 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"; } }