/** 已经声明/定义的数据 */ export declare function isDef(val: T): val is NonNullable; /** 是数组 */ export declare const isArray: (v: unknown) => v is T[]; export declare const isNumber: (v: unknown) => v is T; /** 是对象 */ export declare const isObject: (v: T) => v is T; /** 是函数 */ export declare const isFunction: (v: any) => v is Function; /** 是一个 Promise */ export declare const isPromise: (val: any) => val is Promise; /** 是手机号码 */ export declare function isMobile(value: string): boolean; /** 是空 */ export declare const isNullish: (value: any) => boolean; export declare const isString: (value: any) => value is string;