/** 是对象 */ export declare const isObject: (v: T) => v is T; /** 是函数 */ export declare const isFunction: (v: any) => v is Function; /** 是时间对象 */ export declare const isDate: (v: T) => v is T; /** 是一个 Promise */ export declare const isPromise: (val: any) => val is Promise; /** 是空 */ export declare function isNullish(value: any): boolean;