/*!
 * Propylons
 * Copyright(c) 2022 Xavier Raffin
 * MIT Licensed
 */
/**
 * Test if a string or number represents a valid positive (or strictly positive) integer.
 */
export declare function isPositiveInteger(arg?: string | number, strictlyPositive?: boolean): boolean;
