/**
 * Returns the number of leading extraneous zeros before the decimal point.
 *
 * @param str
 *
 * @internal
 */
declare function getNumLeadingZeros(str: string): number;
export { getNumLeadingZeros };
