import { Sequence } from "../../sequency"; export declare class TakeWhile { /** * Takes all elements of the sequence as long as the given `predicate` evaluates to true. * * @param {(item: T) => boolean} predicate * @returns {Sequence} */ takeWhile(this: Sequence, predicate: (item: T) => boolean): Sequence; }