/**判断一个值是否为空,包括undefined、null、空字符串、空数组、空对象等情况 */ export declare function isEmpty(value: any): boolean;