import { CompoundCondition } from "@ucast/core"; export declare const eq: { type: string; }; export declare const ne: { type: string; }; export declare const lt: { type: string; }; export declare const lte: { type: string; }; declare const in_: { type: string; }; export { in_ as in }; export declare const notIn: { type: string; }; declare function ensureIsArray(instruction: { name: string; }, value: any): void; export declare const and: { type: string; validate: typeof ensureIsArray; parse(instruction: { name: string; }, queries: any[], { parse }: any): CompoundCondition; }; export declare const or: { type: string; validate: typeof ensureIsArray; parse(instruction: { name: string; }, queries: any[], { parse }: any): CompoundCondition; }; //# sourceMappingURL=instructions.d.ts.map