import type { RoundingMode } from '../types'; /** * Round a number with half values to nearest integer farthest from zero. * * @param value - The number to round. * * @returns The rounded number. */ export declare const halfAwayFromZero: RoundingMode;