import type { BinaryOperation } from '@dinero.js/core';
/**
 * Returns the sum of two numbers.
 *
 * @param augend - The number to add to.
 * @param addend - The number to add.
 *
 * @returns The sum of the two numbers.
 */
export declare const add: BinaryOperation<number>;
