type Enumerable = ArrayLike | Iterable; /** * Counts values of the collection or iterable. * * @param items - The input data. * @signature * R.length(array) * @example * R.length([1, 2, 3]) // => 3 * @dataFirst * @category Array */ declare function length(items: Enumerable): number; /** * Counts values of the collection or iterable. * * @signature * R.length()(array) * @example * R.pipe([1, 2, 3], R.length()) // => 3 * @dataLast * @category Array */ declare function length(): (items: Enumerable) => number; export { length };