import * as Chunk from "../core.js"; /** * Drops all elements so long as the predicate returns true. */ export declare function dropWhile_(self: Chunk.Chunk, f: (a: A) => boolean): Chunk.Chunk; /** * Drops all elements so long as the predicate returns true. * * @ets_data_first dropWhile_ */ export declare function dropWhile(f: (a: A) => boolean): (self: Chunk.Chunk) => Chunk.Chunk; //# sourceMappingURL=dropWhile.d.ts.map