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"; /** * Performs an effectful filter and map in a single step. * @tsplus static effect/core/stream/Stream.Aspects collectEffect * @tsplus pipeable effect/core/stream/Stream collectEffect * @tsplus location "@effect/core/stream/Stream/operations/collectEffect" */ export declare function collectEffect(pf: (a: A) => Maybe>): (self: import("../definition").Stream) => import("../definition").Stream; //# sourceMappingURL=collectEffect.d.ts.map