import { Effect } from "@effect/core/io/Effect/definition"; /** * Returns an effect that models the execution of this effect, followed by the * passing of its value to the specified continuation function `k`, followed * by the effect that it returns. * @tsplus static effect/core/io/Effect.Aspects flatMap * @tsplus pipeable effect/core/io/Effect flatMap * @tsplus location "@effect/core/io/Effect/operations/flatMap" */ export declare function flatMap(f: (a: A) => Effect): (self: import("../definition").Effect) => import("../definition").Effect; //# sourceMappingURL=flatMap.d.ts.map