import type { UIO } from "../Effect/effect.js"; import { Runtime } from "./fiberRef.js"; /** * Creates a new `FiberRef` with given initial value. */ export declare function make(initial: A, onFork?: (a: A) => A, onJoin?: (a: A, a2: A) => A): UIO>; /** * Creates a new `FiberRef` with given initial value. */ export declare function unsafeMake(initial: A, onFork?: (a: A) => A, onJoin?: (a: A, a2: A) => A): Runtime; //# sourceMappingURL=make.d.ts.map