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