/**
* Rounds a number to a specified amount of decimal places.
*
* @param input The number to round off
* @param decimals The amount of decimals to retain
*/declarefunctionroundNumber(input: number | string, decimals?: number): number;
export { roundNumber };