/** * Shifts the decimal places of a number and by default rounds to the nearest whole number. * * This is useful for converting a number represented as a factorial of another such as cents to a number of dollars. */ declare function shiftDecimalPlaces(wholeNumber?: number, placesToShift?: number, resultFloatPrecision?: number): number; export { shiftDecimalPlaces };