import type { XFiberRef } from "./fiberRef.js"; /** * Atomically modifies the `FiberRef` with the specified function. * * @ets_data_first update_ */ export declare function update(f: (a: A) => A): (self: XFiberRef) => import("./excl-effect.js").IO; /** * Atomically modifies the `FiberRef` with the specified function. */ export declare function update_(self: XFiberRef, f: (a: A) => A): import("./excl-effect.js").IO; //# sourceMappingURL=update.d.ts.map