import * as E from "../../Either"; import type { XRef } from "./model"; /** * Transforms the `get` value of the `XRef` with the specified fallible * function. */ export declare const mapEither: ( f: (_: B) => E.Either ) => (_: XRef) => XRef; /** * Transforms the `get` value of the `XRef` with the specified fallible * function. */ export declare const mapEither_: ( _: XRef, f: (_: B) => E.Either ) => XRef; /** * Transforms the `get` value of the `XRef` with the specified function. */ export declare const map: (f: (_: B) => C) => (_: XRef) => XRef; /** * Transforms the `get` value of the `XRef` with the specified function. */ export declare const map_: (_: XRef, f: (_: B) => C) => XRef; //# sourceMappingURL=functor.d.ts.map