import { MessageFunctionType, Result } from '../types'; export interface IsPositiveFiniteErrors { TARGET_ARGUMENT_NOT_A_NUMBER: MessageFunctionType; } export declare const IS_POSITIVE_FINITE_ERRORS: IsPositiveFiniteErrors; /** * Checks if the value is > 0 and finite. * * ### Example * ``` * expect(isPositiveFinite(4.4).value).toBeTruthy() * ``` * @param target The value being checked. */ export declare function isPositiveFinite(target: number): Result;