import type { BinaryOperation } from '@dinero.js/core';
/**
 * Returns the product of two numbers.
 *
 * @param multiplicand - The number to multiply.
 * @param multiplier - The number to multiply with.
 *
 * @returns The product of the two numbers.
 */
export declare const multiply: BinaryOperation<number>;
