import { Collection } from "@tsplus/stdlib/collections/Collection/definition"; import { Effect } from "@effect/core/io/Effect/definition"; import { Chunk } from "@tsplus/stdlib/collections/Chunk/definition"; /** * Drops all elements so long as the predicate returns true. * @tsplus static effect/core/io/Effect.Ops dropWhile * @tsplus location "@effect/core/io/Effect/operations/dropWhile" */ export declare function dropWhile(self: Collection, f: (a: A) => Effect): Effect>; //# sourceMappingURL=dropWhile.d.ts.map