import type { Effect } from "../../../../Effect/effect.js"; import * as List from "../core.js"; /** * Effectfully maps the elements of this list. */ export declare function mapM_(self: List.List, f: (a: A) => Effect): Effect>; /** * Effectfully maps the elements of this list. * * @ets_data_first mapM_ */ export declare function mapM(f: (a: A) => Effect): (self: List.List) => Effect>; //# sourceMappingURL=mapM.d.ts.map