/** * Get the length of an iterable or asynchronous iterable. * * @category Reducers * @example * ```typescript * length([1, 2, 3]); // 3 * ``` * @param iterable Iterable or asynchronous iterable to get the length from. * @returns Promise with the length of the iterable. */ export declare const length: < Iterable_1 extends import("@vangware/types").IsomorphicIterable, >( iterable: Iterable_1, ) => import("./index.js").ReducerOutput;