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