import type { BinaryOperation } from '@dinero.js/core'; /** * Returns the remainder of two numbers. * * @param dividend - The number to divide. * @param divisor - The number to divide with. * * @returns The remainder of the two numbers. */ export declare const modulo: BinaryOperation;