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