import type * as ElevenLabs from "../index";
export interface WorkflowEdgeModelInput {
    /** 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.WorkflowEdgeModelInputForwardCondition;
    /** Condition that must be met for the edge to be traversed in the backward direction (target to source). */
    backwardCondition?: ElevenLabs.WorkflowEdgeModelInputBackwardCondition;
}
