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