interface RoundTo { /** * check if value rounds to target * @param actual * @param expected * @param [decimals=0] - number of decimals to round to, defaults to 0 * @example roundTo(1.234, 1.23, 2); */ (actual: number, expected: number, decimals?: number): void; } export declare const roundTo: RoundTo, notRoundTo: RoundTo; export {}; //# sourceMappingURL=round-to.d.ts.map