import { equal } from './equal'; import { isArray, isNeArray } from './array'; import { isBoolean } from './boolean'; import { isDate } from './date'; import { isFormData } from './formdata'; import { isFn, isAsyncFn } from './function'; import { isRegExp } from './regexp'; import { isObject, isNeObject } from './object'; import { isNum, isNumBetween, isNumLt, isNumLte, isNumGt, isNumGte, isInt, isIntBetween, isIntLt, isIntLte, isIntGt, isIntGte } from './number'; import { isString, isStringBetween, isNeString } from './string'; declare const Is: Readonly<{ Array: typeof isArray; NeArray: typeof isNeArray; NotEmptyArray: typeof isNeArray; Boolean: typeof isBoolean; Date: typeof isDate; Formdata: typeof isFormData; Function: typeof isFn; AsyncFunction: typeof isAsyncFn; Num: typeof isNum; NumBetween: typeof isNumBetween; NumAbove: typeof isNumGt; NumAboveOrEqual: typeof isNumGte; NumBelow: typeof isNumLt; NumBelowOrEqual: typeof isNumLte; NumGt: typeof isNumGt; NumGte: typeof isNumGte; NumLt: typeof isNumLt; NumLte: typeof isNumLte; Number: typeof isNum; NumberBetween: typeof isNumBetween; NumberAbove: typeof isNumGt; NumberAboveOrEqual: typeof isNumGte; NumberBelow: typeof isNumLt; NumberBelowOrEqual: typeof isNumLte; Int: typeof isInt; IntBetween: typeof isIntBetween; IntAbove: typeof isIntGt; IntAboveOrEqual: typeof isIntGte; IntBelow: typeof isIntLt; IntBelowOrEqual: typeof isIntLte; IntGt: typeof isIntGt; IntGte: typeof isIntGte; IntLt: typeof isIntLt; IntLte: typeof isIntLte; Integer: typeof isInt; IntegerBetween: typeof isIntBetween; IntegerBelow: typeof isIntLt; IntegerBelowOrEqual: typeof isIntLte; IntegerAbove: typeof isIntGt; IntegerAboveOrEqual: typeof isIntGte; RegExp: typeof isRegExp; Object: typeof isObject; NeObject: typeof isNeObject; NotEmptyObject: typeof isNeObject; String: typeof isString; StringBetween: typeof isStringBetween; NeString: typeof isNeString; NotEmptyString: typeof isNeString; Equal: typeof equal; Eq: typeof equal; }>; export { Is, Is as default };