/** * Gets the size of `obj` by returning the number of own enumerable properties. * * @param {Object} obj The collection to inspect. * @returns {number} Returns the collection size. * @example * * size({ 'a': 1, 'b': 2 }); // => 2 * */ declare const _default: (obj: any) => number; export default _default;