interface Length { (list: T): T extends ArrayLike ? number : void; } /** * Returns the number of elements in the array by returning `arr.length`. * * @param {Array} arr The array to inspect. * @return {Number} The length of the array. * @example * * length([]); //=> 0 * length([1, 2, 3]); //=> 3 */ declare const _default: Length; export default _default;