declare type ComparerFunction = (a: T, b: T) => number; declare type ComparingProps = keyof T | Array; export declare type Comparer = ComparerFunction | ComparingProps; export {};