export interface Comparable<T> {
    compareTo(other: T): number;
}
export declare function isComparable(arg: any): arg is Comparable<unknown>;
