import { isFunction, isMap, isSet, Json, JsonArray, JsonObject, JsonPrimitive } from '@typed/common'; import { Is, IsNot } from '@typed/lambda'; export { isFunction, isMap, isSet }; export declare const is: (value: A) => Is; export declare const isNot: (a: A) => IsNot; export declare const isAndIsNot: (value: A) => readonly [Is, IsNot]; export declare const isNotFunction: IsNot; export declare const isNotMap: IsNot>; export declare const isNotSet: IsNot>; export declare const isUndefined: Is, isNotUndefined: IsNot; export declare const isNull: Is, isNotNull: IsNot; export declare function isArray(x: unknown): x is unknown[]; export declare const isNotArray: IsNot; export declare function isIterator(x: unknown): x is Iterator; export declare const isNotIterator: IsNot>; export declare function isIterable(x: unknown): x is Iterable; export declare const isNotIterable: IsNot>; export declare const isGenerator: Is>; export declare const isNotGenerator: IsNot>; export declare const isArrayLike: Is>; export declare const isNotArrayLike: IsNot>; export declare const isNumber: Is; export declare const isNotNumber: IsNot; export declare const isString: Is; export declare const isNotString: IsNot; export declare const isObject: Is; export declare const isNotObject: IsNot; export declare const isRecord: Is>>; export declare const isNotRecord: IsNot>>; export declare const isPromiseLike: Is>; export declare const isNotPromiseLie: IsNot>; export declare const isTrue: Is, isNotTrue: IsNot; export declare const isFalse: Is, isNotFalse: IsNot; export declare const isBoolean: Is; export declare const isNotBoolean: IsNot; export declare const isJsonArray: Is; export declare const isNotJsonArray: IsNot; export declare const isJsonObject: Is; export declare const isNotJsonObject: IsNot; export declare const isJsonPrimitive: Is; export declare const isNotJsonPrimitive: IsNot; export declare const isJson: Is; export declare const isNotJson: IsNot; export declare const isDate: Is; export declare const isNotDate: IsNot; //# sourceMappingURL=is.d.ts.map