/** * 判断对象是否为空对象函数 * * @category Utils * @param obj : 需要判断的对象 * @returns : 返回判断结果布尔值 */ export declare const isEmptyObject: (obj: any) => boolean;