import { EastType, ValueTypeOf } from './types'; /** @internal */ export declare function equalFor(type: T): (x: ValueTypeOf, y: ValueTypeOf) => boolean; /** @internal */ export declare function lessFor(type: T): (x: ValueTypeOf, y: ValueTypeOf) => boolean; /** @internal */ export declare function compareFor(type: T): (x: ValueTypeOf, y: ValueTypeOf) => -1 | 0 | 1;