/**
 * Performs mod calculations with given float numbers
 *
 * @param a - Left hand operand
 * @param b - Right hand operand
 * @param precision - Maximmal digits count after dot among all the next provided numbers
 * @returns mod result
 */
declare const floatMod: (a: number, b: number, precision: number) => number;
export default floatMod;
