/** * Round a number to the nearest decimal place. */ declare function roundToNearest(num: number, decimalPlaces?: number): number; export { roundToNearest };