/** * Calculates the order of magnitude of a given number. * The order of magnitude is the power of ten that most closely approximates the number. * * @param number - The input number for which the order of magnitude is calculated. * @returns The order of magnitude of the input number. */ export declare const getOrderOfMagnitude: (number: number) => number;