/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ /** * Function to round a number to a specified number of decimal places. * * @param number - The number to round. * @param decimalPlaces - The number of decimal places to round to. * @returns The rounded number. */ export declare function roundToDecimalPlaces(number: number, decimalPlaces: number): number; //# sourceMappingURL=mathTools.d.ts.map