import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import * as serializers from "../index"; import { AstBooleanNodeInput } from "./AstBooleanNodeInput"; import { AstDynamicVariableNodeInput } from "./AstDynamicVariableNodeInput"; import { AstllmNodeInput } from "./AstllmNodeInput"; import { AstNumberNodeInput } from "./AstNumberNodeInput"; import { AstStringNodeInput } from "./AstStringNodeInput"; export declare const AstLessThanOperatorNodeInputLeft: core.serialization.Schema; export declare namespace AstLessThanOperatorNodeInputLeft { type Raw = AstLessThanOperatorNodeInputLeft.AndOperator | AstLessThanOperatorNodeInputLeft.BooleanLiteral | AstLessThanOperatorNodeInputLeft.DynamicVariable | AstLessThanOperatorNodeInputLeft.EqOperator | AstLessThanOperatorNodeInputLeft.GtOperator | AstLessThanOperatorNodeInputLeft.GteOperator | AstLessThanOperatorNodeInputLeft.Llm | AstLessThanOperatorNodeInputLeft.LtOperator | AstLessThanOperatorNodeInputLeft.LteOperator | AstLessThanOperatorNodeInputLeft.NeqOperator | AstLessThanOperatorNodeInputLeft.NumberLiteral | AstLessThanOperatorNodeInputLeft.OrOperator | AstLessThanOperatorNodeInputLeft.StringLiteral; interface AndOperator extends serializers.AstAndOperatorNodeInput.Raw { type: "and_operator"; } interface BooleanLiteral extends AstBooleanNodeInput.Raw { type: "boolean_literal"; } interface DynamicVariable extends AstDynamicVariableNodeInput.Raw { type: "dynamic_variable"; } interface EqOperator extends serializers.AstEqualsOperatorNodeInput.Raw { type: "eq_operator"; } interface GtOperator extends serializers.AstGreaterThanOperatorNodeInput.Raw { type: "gt_operator"; } interface GteOperator extends serializers.AstGreaterThanOrEqualsOperatorNodeInput.Raw { type: "gte_operator"; } interface Llm extends AstllmNodeInput.Raw { type: "llm"; } interface LtOperator extends serializers.AstLessThanOperatorNodeInput.Raw { type: "lt_operator"; } interface LteOperator extends serializers.AstLessThanOrEqualsOperatorNodeInput.Raw { type: "lte_operator"; } interface NeqOperator extends serializers.AstNotEqualsOperatorNodeInput.Raw { type: "neq_operator"; } interface NumberLiteral extends AstNumberNodeInput.Raw { type: "number_literal"; } interface OrOperator extends serializers.AstOrOperatorNodeInput.Raw { type: "or_operator"; } interface StringLiteral extends AstStringNodeInput.Raw { type: "string_literal"; } }