import { Sequence } from "../../sequency"; export declare class Count { /** * Returns the number of elements of this sequence. If `predicate` is present, returns * the number of elements matching the given `predicate`. * * @param {(T) => boolean} predicate * @returns {number} */ count(this: Sequence, predicate?: (item: T) => boolean): number; }