import type { Effect, RIO } from "./effect.js"; /** * Like fork but handles an error with the provided handler. * * @ets_data_first forkWithErrorHandler_ */ export declare function forkWithErrorHandler(handler: (e: E) => RIO, __trace?: string): (self: Effect) => RIO>; /** * Like fork but handles an error with the provided handler. */ export declare function forkWithErrorHandler_(self: Effect, handler: (e: E) => RIO, __trace?: string): RIO>; //# sourceMappingURL=forkWithErrorHandler.d.ts.map