import type { Dinero } from '../types'; import type { Dependencies } from './types'; export declare type AddParams = readonly [ augend: Dinero, addend: Dinero ]; export declare type UnsafeAddDependencies = Dependencies; export declare function unsafeAdd({ calculator, }: UnsafeAddDependencies): (augend: Dinero, addend: Dinero) => Dinero; export declare type SafeAddDependencies = Dependencies; export declare function safeAdd({ calculator }: SafeAddDependencies): (augend: Dinero, addend: Dinero) => Dinero;