/**
 * Check if object is empty
 *
 * @param obj - Value to check
 * @returns true if object is empty
 */
declare const isEmptyObject: (obj: Obj) => boolean;
export default isEmptyObject;
