import type { FiberContext } from "../Fiber/index.js"; import type { Managed } from "../Managed/managed.js"; import type { Effect } from "./effect.js"; /** * Forks the fiber in a `Managed`. Using the `Managed` value will * execute the effect in the fiber, while ensuring its interruption when * the effect supplied to `use` completes. */ export declare function forkManaged(self: Effect, __trace?: string): Managed>; //# sourceMappingURL=forkManaged.d.ts.map