import { Predicate } from "@tsplus/stdlib/data/Predicate"; import { Sink } from "@effect/core/stream/Sink/definition/base"; import { Chunk } from "@tsplus/stdlib/collections/Chunk/definition"; import { List } from "@tsplus/stdlib/collections/List/definition"; /** * Accumulates incoming elements into a chunk as long as they verify predicate * `p`. * @tsplus static effect/core/stream/Sink.Ops collectAllWhile * @tsplus location "@effect/core/stream/Sink/operations/collectAllWhile" */ export declare function collectAllWhile(p: Predicate): Sink>; //# sourceMappingURL=collectAllWhile.d.ts.map