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