import { TReferenceProps } from '../../..'; import { INumberProps, TNumberValidatorResult } from '../_types'; export interface IIsPositiveProps { } /** * Check if the `number` is positive. */ export declare const isPositive: (props?: TReferenceProps & INumberProps) => TNumberValidatorResult;