import type * as ElevenLabs from "../index";
export interface WorkflowExpressionConditionModelOutput {
    /** Optional human-readable label for the condition used throughout the UI. */
    label?: string;
    /** Expression to evaluate. */
    expression: ElevenLabs.WorkflowExpressionConditionModelOutputExpression;
}
