/** * Returns the number rounded to the nearest interval. * @param {number} value The number to round * @param {number} interval The numeric interval to round to, default to 0.5 * @returns {number} the rounded number */ export declare const roundToNearest: (value: number, interval?: number) => number;