import { TypeMap, TypeOfStr } from "./typeOf.js"; export declare const isUndefined: (O: T | undefined) => O is undefined; export declare const isNull: (O: T | null) => O is null; export declare const isNullish: (O: T | null | undefined) => O is null | undefined; export declare const notUndefined: (O: T | undefined) => O is T; export declare const notNull: (O: T | null) => O is T; export declare const notNullish: (O: T | null | undefined) => O is T; export declare const isTrue: (O: T | true) => O is true; export declare const isFalse: (O: T | false) => O is false; export declare const isT: (type: TStr) => (O: unknown) => O is TypeMap[TStr]; export declare const isObject: (O: unknown) => O is TypeMap["object"]; //# sourceMappingURL=isTypeOf.d.ts.map