/** * 当 * value= null || undefined || "" || [] || {} 时返回true * * @param value * @return {*} */ declare function isNothing(value: any): boolean; export { isNothing };