/**
 * Determines if the given number is so large that it requires scientific notation (`e`) when
 * represented as a string.
 *
 * @category Number
 * @category Package : @augment-vir/common
 * @example
 *
 * ```ts
 * import {requiresScientificNotation} from '@augment-vir/common';
 *
 * requiresScientificNotation(5); // false
 * requiresScientificNotation(999999999999999999999); // true
 * ```
 *
 * @package [`@augment-vir/common`](https://www.npmjs.com/package/@augment-vir/common)
 */
export declare function requiresScientificNotation(input: number): boolean;
