import { Sink } from "@effect/core/stream/Sink/definition/base"; /** * Runs this sink until it yields a result, then uses that result to create * another sink from the provided function which will continue to run until it * yields a result. * * This function essentially runs sinks in sequence. * @tsplus static effect/core/stream/Sink.Aspects flatMap * @tsplus pipeable effect/core/stream/Sink flatMap * @tsplus location "@effect/core/stream/Sink/operations/flatMap" */ export declare function flatMap(f: (z: Z) => Sink): (self: import("../definition").Sink) => import("../definition").Sink; //# sourceMappingURL=flatMap.d.ts.map