import { Sequence } from "../../sequency"; export declare class All { /** * Returns `true` if all elements match the given `predicate`. * * @param {(T) => boolean} predicate * @returns {boolean} */ all(this: Sequence, predicate: (item: T) => boolean): boolean; }