import { Context } from '../context';
export declare type UnaryOperatorHandler = (operand: any, ctx: Context) => boolean;
export declare type BinaryOperatorHandler = (lhs: any, rhs: any, ctx: Context) => boolean;
export declare type OperatorHandler = UnaryOperatorHandler | BinaryOperatorHandler;
export declare type Operators = Record<string, OperatorHandler>;
export declare const defaultOperators: Operators;
