import { IEquatable } from '../types'; export declare class Comparers { static number(a: number, b: number): number; static string(a: string, b: string): number; static stringIgnoreCase(a: string, b: string): number; } export declare class Equals { static simpleType(a: T, b: T): boolean; static object>(a: T, b: T): boolean; } //# sourceMappingURL=comparers.d.ts.map