import { Effect } from "@effect/core/io/Effect/definition"; import { Collection } from "@tsplus/stdlib/collections/Collection/definition"; import { Stream } from "@effect/core/stream/Stream/definition"; /** * Effectfully maps each element to an Collection, and flattens the Collections * into the output of this stream. * @tsplus static effect/core/stream/Stream.Aspects mapConcatEffect * @tsplus pipeable effect/core/stream/Stream mapConcatEffect * @tsplus location "@effect/core/stream/Stream/operations/mapConcatEffect" */ export declare function mapConcatEffect(f: (a: A) => Effect>): (self: import("../definition").Stream) => import("../definition").Stream; //# sourceMappingURL=mapConcatEffect.d.ts.map