/**
 * Checks if the object doesn't have any keys. If the object is null or undefined, it returns true.
 * @param obj
 * @returns {boolean}
 */
export declare const isEmptyObject: (obj: any) => boolean;
