import type { Calculator } from '../types'; declare type GreaterThanCalculator = Pick, 'compare'>; /** * Returns a greaterThan function. * * @param calculator - The calculator to use. * * @returns The greaterThan function. */ export declare function greaterThan(calculator: GreaterThanCalculator): (subject: TAmount, comparator: TAmount) => boolean; export {};