import * as T from "../Task/_core"; import type { XRefM } from "./model"; /** * Transforms the `get` value of the `XRefM` with the specified effectual * function. */ export declare const mapM_: ( self: XRefM, f: (b: B) => T.Task ) => XRefM; /** * Transforms the `get` value of the `XRefM` with the specified effectual * function. */ export declare const mapM: ( f: (b: B) => T.Task ) => (self: XRefM) => XRefM; /** * Transforms the `get` value of the `XRefM` with the specified function. */ export declare const map_: ( self: XRefM, f: (b: B) => C ) => XRefM; /** * Transforms the `get` value of the `XRefM` with the specified function. */ export declare const map: ( f: (b: B) => C ) => (self: XRefM) => XRefM; //# sourceMappingURL=functor.d.ts.map