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