/**
 * Check if an object is empty.
 * @param {Object} obj - The object to be checked.
 * @returns {boolean} - Whether the object is empty or not.
 */
export function isEmptyObject(obj: any): boolean;
export default isEmptyObject;
