/**
 * 判断`obj`是否为空
 * @category Object
 * @param obj
 */
declare function isEmptyObject(obj: Object): boolean;
export default isEmptyObject;
