import type { Effect } from "./effect.js"; /** * Returns an effect whose success is mapped by the specified `f` function. */ export declare function map_(_: Effect, f: (a: A) => B, __trace?: string): Effect; /** * Returns an effect whose success is mapped by the specified `f` function. * * @ets_data_first map_ */ export declare function map(f: (a: A) => B, __trace?: string): (self: Effect) => Effect; //# sourceMappingURL=map.d.ts.map