import { Eval } from "@tsplus/stdlib/io/Eval/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 Eval.Aspects map * @tsplus pipeable Eval map * @tsplus location "@tsplus/stdlib/io/Eval/map" */ export declare function map(f: (a: A) => B): (self: Eval) => Eval; //# sourceMappingURL=map.d.ts.map