import { Combinator } from '../types'; /** * Basic `AND` and `OR` logical combinators which can be used in the model config. * @beta * */ export declare const BASE_LOGICAL_COMBINATORS: Combinator[]; /** * A set of boolean logic combinators which configure the expression builder to produce boolean expressions. * @beta * */ export declare const LOGICAL_COMBINATORS: Combinator[]; /** * A combinator which has a null action. * * If configured as the only combinator then it configures the expression builder to only create a single rule. * @beta * */ export declare const NULL_COMBINATOR: Combinator; //# sourceMappingURL=combinators.d.ts.map