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"; /** * Maps over elements of the stream with the specified effectful function. * @tsplus static effect/core/stream/Stream.Aspects mapEffect * @tsplus pipeable effect/core/stream/Stream mapEffect * @tsplus location "@effect/core/stream/Stream/operations/mapEffect" */ export declare function mapEffect(f: (a: A) => Effect): (self: import("../definition").Stream) => import("../definition").Stream; //# sourceMappingURL=mapEffect.d.ts.map