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