/** * The function is used to round the percent value in routes. * If the percent is an integer, then such value is displayed without an extra "0" after the decimal point. * Example of rounding to two decimals: "33.33 %", "50 %", "22.25 %", "60 %", etc. */ declare const roundPercentInRoutes: (num: number, fixed: number) => string; export { roundPercentInRoutes };