/** * @param {string} string - the string to check * @param {number} config.maxDecimals - the maximum amount of decimal places to allow * @returns true if string has less than maxDecimals decimal places else returns false */ declare const mustHaveLessThanDecimalPlaces: (string: any, config: any) => boolean; export default mustHaveLessThanDecimalPlaces;