import { MessageFunctionType, Result } from '../types'; export interface IsGreaterThanFiniteErrors { TARGET_ARGUMENT_NOT_A_NUMBER: MessageFunctionType; VALUE_ARGUMENT_NOT_A_NUMBER: MessageFunctionType; } export declare const IS_GREATER_THAN_FINITE_ERRORS: IsGreaterThanFiniteErrors; /** * Tests that both `greater` and `than` are finite whether greater > than is true. * * ### Example * ``` * expect(isGreaterThanFinite(11,10).value).toBeTruthy() * ``` * * @param greater The value being checked. * @param than The target value to perform the check against. */ export declare function isGreaterThanFinite(greater: number, than: number): Result;