import { Either } from "@tsplus/stdlib/data/Either/definition"; /** * Extends this computation with another computation that depends on the * result of this computation by running the first computation, using its * result to generate a second computation, and running that computation. * @tsplus static Either.Aspects flatMap * @tsplus pipeable Either flatMap * @tsplus location "@tsplus/stdlib/data/Either/flatMap" */ export declare function flatMap(f: (a: A) => Either): (self: import("./definition").Either) => import("./definition").Either; //# sourceMappingURL=flatMap.d.ts.map