import * as Fiber from "../Fiber/index.js"; import type { Effect, RIO } from "./effect.js"; /** * Forks the effect into a new independent fiber, with the specified name. * * @ets_data_first forkAs_ */ export declare function forkAs(name: string, __trace?: string): (self: Effect) => RIO>; /** * Forks the effect into a new independent fiber, with the specified name. */ export declare function forkAs_(self: Effect, name: string, __trace?: string): RIO>; //# sourceMappingURL=forkAs.d.ts.map