import type { DefinedPrimitive, Falsy, Nullish, PrimitiveType, Truthy } from '@toolbox-ts/types/general'; export declare const isBigInt: import("@toolbox-ts/types/defs/function").TypeGuard, "BigInt">; export declare const checkIsBigInt: import("@toolbox-ts/types/defs/function").TypeGuard, "BigInt">; export declare function assertIsBigInt(v: unknown): asserts v is bigint; export declare const isBoolean: import("@toolbox-ts/types/defs/function").TypeGuard, "Boolean">; export declare const checkIsBoolean: import("@toolbox-ts/types/defs/function").TypeGuard, "Boolean">; export declare function assertIsBoolean(v: unknown): asserts v is boolean; export declare const isNumber: import("@toolbox-ts/types/defs/function").TypeGuard, "Number">; export declare const checkIsNumber: import("@toolbox-ts/types/defs/function").TypeGuard, "Number">; export declare function assertIsNumber(v: unknown): asserts v is number; export declare const isString: import("@toolbox-ts/types/defs/function").TypeGuard, "String">; export declare const checkIsString: import("@toolbox-ts/types/defs/function").TypeGuard, "String">; export declare function assertIsString(v: unknown): asserts v is string; export declare const isSymbol: import("@toolbox-ts/types/defs/function").TypeGuard, "Symbol">; export declare const checkIsSymbol: import("@toolbox-ts/types/defs/function").TypeGuard, "Symbol">; export declare function assertIsSymbol(v: unknown): asserts v is symbol; export declare const isFalsy: import("@toolbox-ts/types/defs/function").TypeGuard, "Falsy">; export declare const checkIsFalsy: import("@toolbox-ts/types/defs/function").TypeGuard, "Falsy">; export declare function assertIsFalsy(v: unknown): asserts v is Falsy; export declare const isTruthy: { readonly name: "isTruthy"; readonly typeName: "Truthy"; } & ((v: unknown) => v is Truthy); export declare const checkIsTruthy: { readonly name: "checkIsTruthy"; readonly typeName: "Truthy"; } & ((v: unknown) => boolean); export declare function assertIsTruthy(v: unknown): asserts v is Truthy; export declare const isPrimitive: import("@toolbox-ts/types/defs/function").TypeGuard, "Primitive">; export declare const checkIsPrimitive: import("@toolbox-ts/types/defs/function").TypeGuard, "Primitive">; export declare function assertIsPrimitive(v: unknown): asserts v is PrimitiveType; export declare const isDefinedPrimitive: import("@toolbox-ts/types/defs/function").TypeGuard, "DefinedPrimitive">; export declare const checkIsDefinedPrimitive: import("@toolbox-ts/types/defs/function").TypeGuard, "DefinedPrimitive">; export declare function assertIsDefinedPrimitive(v: unknown): asserts v is DefinedPrimitive; export declare const isUndefined: import("@toolbox-ts/types/defs/function").TypeGuard, "Undefined">; export declare const isNotUndefined: import("@toolbox-ts/types/defs/function").ExclusiveTypeGuard, "Undefined">; export declare const checkIsUndefined: import("@toolbox-ts/types/defs/function").TypeGuard, "Undefined">; export declare const checkIsNotUndefined: import("@toolbox-ts/types/defs/function").ExclusiveTypeGuard, "Undefined">; export declare function assertIsUndefined(v: unknown): asserts v is undefined; export declare function assertIsNotUndefined(v: V): asserts v is Exclude; export declare const isNullish: import("@toolbox-ts/types/defs/function").TypeGuard, "Nullish">; export declare const isNotNullish: import("@toolbox-ts/types/defs/function").ExclusiveTypeGuard, "Nullish">; export declare const checkIsNullish: import("@toolbox-ts/types/defs/function").TypeGuard, "Nullish">; export declare const checkIsNotNullish: import("@toolbox-ts/types/defs/function").ExclusiveTypeGuard, "Nullish">; export declare function assertIsNullish(v: unknown): asserts v is Nullish; export declare function assertIsNotNullish(v: V): asserts v is Exclude; export declare const isNull: import("@toolbox-ts/types/defs/function").TypeGuard, "Null">; export declare const isNotNull: import("@toolbox-ts/types/defs/function").ExclusiveTypeGuard, "Null">; export declare const checkIsNull: import("@toolbox-ts/types/defs/function").TypeGuard, "Null">; export declare const checkIsNotNull: import("@toolbox-ts/types/defs/function").ExclusiveTypeGuard, "Null">; export declare function assertIsNull(v: unknown): asserts v is null; export declare function assertIsNotNull(v: V): asserts v is Exclude;