/** * Rounds the provided value to a certain precision * * @param {number} val - Value to round * @param {number} precision - (default=0) Amount of decimals precision to round to */ declare function round(val: number, precision?: number): number; export { round, round as default };