import { Scope } from "@effect/core/io/Scope/definition"; import { Effect } from "@effect/core/io/Effect/definition"; import { Fiber } from "@effect/core/io/Fiber/definition"; /** * Forks the effect in the specified scope. The fiber will be interrupted * when the scope is closed. * @tsplus static effect/core/io/Effect.Aspects forkIn * @tsplus pipeable effect/core/io/Effect forkIn * @tsplus location "@effect/core/io/Effect/operations/forkIn" */ export declare function forkIn(scope: Scope): (self: import("../definition").Effect) => import("../definition").Effect>; //# sourceMappingURL=forkIn.d.ts.map