/** * Check if an object is empty * @param obj The object being checked * * @example * U.isEmpty({}) // => true * U.isEmpty({ bob: true }) // => false */ export declare function isEmpty(obj: object): boolean; //# sourceMappingURL=isEmpty.d.ts.map