import * as Fiber from "../Fiber/index.js"; import type { Effect, IO } from "./effect.js"; /** * Creates a `Effect` value that represents the exit value of the specified * fiber. */ export declare function fromFiber(fiber: () => Fiber.Fiber, __trace?: string): IO; /** * Creates a `Effect` value that represents the exit value of the specified * fiber. */ export declare function fromFiberM(fiber: Effect>, __trace?: string): Effect; //# sourceMappingURL=fromFiber.d.ts.map