/** * Round a number to the specified number of decimal places * * Uses sign-aware epsilon correction to handle floating-point precision * issues for both positive and negative numbers. * Example: roundTo(0.615, 2) → 0.62, roundTo(-2.555, 2) → -2.56 * * @param value - The number to round * @param decimals - Number of decimal places (default: 2) * @returns Rounded number, or the original value if NaN/Infinity */ export declare function roundTo(value: number, decimals?: number): number; //# sourceMappingURL=utils.d.ts.map