import { AbstractInteger } from './AbstractInteger'; /** * Compare two integers. * * @param a * @param b */ export declare function compare>(a: I, b: I): -1 | 0 | 1; /** * Get if the given integers are equal. * * @param a * @param b */ export declare function isEqual>(a: D, b: D): boolean; /** * Get if the first integer is less than the second one. * * @param a * @param b */ export declare function isLessThan>(a: D, b: D): boolean; /** * Get if the first integer is less than or equal to the second one. * * @param a * @param b */ export declare function isLessThanOrEqual>(a: D, b: D): boolean; /** * Get if the first integer is greater than the second one. * * @param a * @param b */ export declare function isGreaterThan>(a: D, b: D): boolean; /** * Get if the first integer is greater than or equal to the second one. * * @param a * @param b */ export declare function isGreaterThanOrEqual>(a: D, b: D): boolean; //# sourceMappingURL=compare.d.ts.map