declare const SECONDS_IN_YEAR: bigint; declare const HOURS_IN_YEAR: bigint; declare const ONE_2_DP: bigint; declare const ONE_4_DP: bigint; declare const ONE_10_DP: bigint; declare const ONE_14_DP: bigint; declare const ONE_16_DP: bigint; declare const UINT64: bigint; declare const UINT128: bigint; declare function maximum(n1: bigint, n2: bigint): bigint; declare function minimum(n1: bigint, n2: bigint): bigint; declare function mulScale(n1: bigint, n2: bigint, scale: bigint): bigint; declare function mulScaleRoundUp(n1: bigint, n2: bigint, scale: bigint): bigint; declare function divScale(n1: bigint, n2: bigint, scale: bigint): bigint; declare function divScaleRoundUp(n1: bigint, n2: bigint, scale: bigint): bigint; declare function expBySquaring(x: bigint, n: bigint, scale: bigint): bigint; declare function compoundEverySecond(rate: bigint, scale: bigint): bigint; declare function compoundEveryHour(rate: bigint, scale: bigint): bigint; declare function sqrt(value: bigint): bigint; export { SECONDS_IN_YEAR, HOURS_IN_YEAR, ONE_16_DP, ONE_14_DP, ONE_10_DP, ONE_4_DP, ONE_2_DP, UINT64, UINT128, maximum, minimum, mulScale, mulScaleRoundUp, divScale, divScaleRoundUp, expBySquaring, compoundEverySecond, compoundEveryHour, sqrt, }; //# sourceMappingURL=mathLib.d.ts.map