import { TReferenceProps } from '../../..'; import { INumberProps, TNumberValidatorResult } from '../_types'; export interface IIsIntegerProps { } /** * Check if the number is an integer. */ export declare const isInteger: (props?: TReferenceProps & INumberProps) => TNumberValidatorResult;