export declare type Comparator<T> = (a: T, b: T) => number;
export declare function ascending<T>(a: T, b: T): number;
