import type { IO } from "../Effect/effect.js"; import type { XFiberRef } from "./fiberRef.js"; /** * Sets the value associated with the current fiber. * * @ets_data_first set_ */ export declare function set(a: A): (fiberRef: XFiberRef) => IO; /** * Sets the value associated with the current fiber. */ export declare function set_(fiberRef: XFiberRef, a: A): IO; //# sourceMappingURL=set.d.ts.map