import type { UnaryOperation } from '@dinero.js/core';
/**
 * Returns an decremented number.
 *
 * @param value - The number to decrement.
 *
 * @returns The decremented number.
 */
export declare const decrement: UnaryOperation<number>;
