export type BinarySearchPredicate = '>=' | '<=' | '<' | '>' | '-'; export type SearchPredicateSuffix = 'GE' | 'GT' | 'LT' | 'LE' | 'EQ'; declare const ge: Function; declare const gt: Function; declare const lt: Function; declare const le: Function; declare const eq: Function; export {};