import { AnyFunction, Truthy } from '../types/misc.js'; export declare const isNotUndefined: (val: T) => val is Exclude; export declare const isNotNull: (val: T) => val is Exclude; export declare const isBoolean: (val: any) => val is boolean; export declare const isTruthy: (val: T) => val is Truthy; export declare const isFalsy: (val: T) => val is Exclude>; export declare const isFunction: (val: any) => val is AnyFunction; export declare const isNumber: (val: any) => val is number; export declare const isString: (val: unknown) => val is string; export declare const isSymbol: (val: any) => val is symbol; export declare const isBigInt: (val: any) => val is bigint; export declare const isObject: (val: any) => val is object;