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