/** * Get the number of digits after the decimal point. */ export declare function fractionDigits(value: number | string): number; /** * Get the remainder accurately via enlarging the dividend and divisor to integer * before mod operation. */ export declare function modAccurately(dividend: number, divisor: number): number; //# sourceMappingURL=precision.d.ts.map