import { Predicate } from "@tsplus/stdlib/data/Predicate"; import { Chunk } from "@tsplus/stdlib/collections/Chunk/definition"; /** * Drops all elements so long as the predicate returns true. * @tsplus static Chunk.Aspects dropWhile * @tsplus pipeable Chunk dropWhile * @tsplus location "@tsplus/stdlib/collections/Chunk/operations/dropWhile" */ export declare function dropWhile(f: Predicate): (self: Chunk) => Chunk; //# sourceMappingURL=dropWhile.d.ts.map