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