import { Maybe } from "@tsplus/stdlib/data/Maybe/definition"; import { Effect } from "@effect/core/io/Effect/definition"; import { Stream } from "@effect/core/stream/Stream/definition"; import { Channel } from "@effect/core/stream/Channel/definition/base"; import { Chunk } from "@tsplus/stdlib/collections/Chunk/definition"; /** * Effectfully transforms all elements of the stream for as long as the * specified partial function is defined. * @tsplus static effect/core/stream/Stream.Aspects collectWhileEffect * @tsplus pipeable effect/core/stream/Stream collectWhileEffect * @tsplus location "@effect/core/stream/Stream/operations/collectWhileEffect" */ export declare function collectWhileEffect(pf: (a: A) => Maybe>): (self: import("../definition").Stream) => import("../definition").Stream; //# sourceMappingURL=collectWhileEffect.d.ts.map