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"; /** * Returns a stream made of the concatenation in strict order of all the * streams produced by passing each element of this stream to `f0` * @tsplus static effect/core/stream/Stream.Aspects flatMap * @tsplus pipeable effect/core/stream/Stream flatMap * @tsplus location "@effect/core/stream/Stream/operations/flatMap" */ export declare function flatMap(f: (a: A) => Stream): (self: import("../definition").Stream) => import("../definition").Stream; //# sourceMappingURL=flatMap.d.ts.map