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