import type { Dinero } from '../types'; import type { Dependencies } from './types'; export declare type IsNegativeParams = readonly [ dineroObject: Dinero ]; export declare type IsNegativeDependencies = Dependencies; export declare function isNegative({ calculator, }: IsNegativeDependencies): (dineroObject: Dinero) => boolean;