import 'core-js/stable';
/**
 * Helper function for testing if the item is an Object or Array that does not have any properties
 * @memberOf module:objectHelpers
 * @param {Object|Array} item - Object or Array to test
 * @returns {boolean}
 */
declare const emptyObject: (item: Array<any> | Object) => boolean;
export default emptyObject;
