import type * as ElevenLabs from "../../api/index";
import * as core from "../../core";
import * as serializers from "../index";
import { AstBooleanNodeOutput } from "./AstBooleanNodeOutput";
import { AstDynamicVariableNodeOutput } from "./AstDynamicVariableNodeOutput";
import { AstllmNodeOutput } from "./AstllmNodeOutput";
import { AstNumberNodeOutput } from "./AstNumberNodeOutput";
import { AstStringNodeOutput } from "./AstStringNodeOutput";
export declare const AstLessThanOperatorNodeOutputLeft: core.serialization.Schema<serializers.AstLessThanOperatorNodeOutputLeft.Raw, ElevenLabs.AstLessThanOperatorNodeOutputLeft>;
export declare namespace AstLessThanOperatorNodeOutputLeft {
    type Raw = AstLessThanOperatorNodeOutputLeft.AndOperator | AstLessThanOperatorNodeOutputLeft.BooleanLiteral | AstLessThanOperatorNodeOutputLeft.DynamicVariable | AstLessThanOperatorNodeOutputLeft.EqOperator | AstLessThanOperatorNodeOutputLeft.GtOperator | AstLessThanOperatorNodeOutputLeft.GteOperator | AstLessThanOperatorNodeOutputLeft.Llm | AstLessThanOperatorNodeOutputLeft.LtOperator | AstLessThanOperatorNodeOutputLeft.LteOperator | AstLessThanOperatorNodeOutputLeft.NeqOperator | AstLessThanOperatorNodeOutputLeft.NumberLiteral | AstLessThanOperatorNodeOutputLeft.OrOperator | AstLessThanOperatorNodeOutputLeft.StringLiteral;
    interface AndOperator extends serializers.AstAndOperatorNodeOutput.Raw {
        type: "and_operator";
    }
    interface BooleanLiteral extends AstBooleanNodeOutput.Raw {
        type: "boolean_literal";
    }
    interface DynamicVariable extends AstDynamicVariableNodeOutput.Raw {
        type: "dynamic_variable";
    }
    interface EqOperator extends serializers.AstEqualsOperatorNodeOutput.Raw {
        type: "eq_operator";
    }
    interface GtOperator extends serializers.AstGreaterThanOperatorNodeOutput.Raw {
        type: "gt_operator";
    }
    interface GteOperator extends serializers.AstGreaterThanOrEqualsOperatorNodeOutput.Raw {
        type: "gte_operator";
    }
    interface Llm extends AstllmNodeOutput.Raw {
        type: "llm";
    }
    interface LtOperator extends serializers.AstLessThanOperatorNodeOutput.Raw {
        type: "lt_operator";
    }
    interface LteOperator extends serializers.AstLessThanOrEqualsOperatorNodeOutput.Raw {
        type: "lte_operator";
    }
    interface NeqOperator extends serializers.AstNotEqualsOperatorNodeOutput.Raw {
        type: "neq_operator";
    }
    interface NumberLiteral extends AstNumberNodeOutput.Raw {
        type: "number_literal";
    }
    interface OrOperator extends serializers.AstOrOperatorNodeOutput.Raw {
        type: "or_operator";
    }
    interface StringLiteral extends AstStringNodeOutput.Raw {
        type: "string_literal";
    }
}
