/**
 * Counts the number of decimal places a number has
 *
 * @param value the decimal value to count
 */
declare function countDecimalPlaces(value: number): number;

export { countDecimalPlaces as default };
