import type { NullishReturn, TypeCheckFunction } from './private-types'; export declare function isNullish(value: unknown): value is NullishReturn; export declare const isNumber: TypeCheckFunction; export declare const isObject: TypeCheckFunction; export declare const isFunction: TypeCheckFunction; type UnknownArray = unknown[] | readonly unknown[]; export declare const isArray: TypeCheckFunction; export declare const isFiniteNumber: { (value: number): boolean; (value: unknown): value is number; }; export {}; //# sourceMappingURL=is.d.ts.map