export declare const Ordering: {
    readonly Less: "less";
    readonly Equal: "equal";
    readonly Greater: "greater";
};
export type Order = (typeof Ordering)[keyof typeof Ordering];
export type Compare<T> = (a: T, b: T) => Order;
