/** * 检查输入的值是否为空 包括 '空数组' '空对象' '空字符串' 'undefined' 'null' * * @example * * isEmpty(null); //=> true * isEmpty(undefined); //=> true * isEmpty([]); //=> true * isEmpty({}); //=> true * isEmpty(''); //=> true */ export declare function isEmpty(value: any): boolean;