import type * as ElevenLabs from "../index"; export interface WorkflowEdgeModelOutput { /** ID of the source node. */ source: string; /** ID of the target node. */ target: string; /** Condition that must be met for the edge to be traversed in the forward direction (source to target). */ forwardCondition?: ElevenLabs.WorkflowEdgeModelOutputForwardCondition; /** Condition that must be met for the edge to be traversed in the backward direction (target to source). */ backwardCondition?: ElevenLabs.WorkflowEdgeModelOutputBackwardCondition; }