import { Effect } from "@effect/core/io/Effect/definition"; import { Exit } from "@effect/core/io/Exit/definition"; import { Fiber } from "@effect/core/io/Fiber/definition"; /** * Returns an effect that races this effect with the specified effect, calling * the specified finisher as soon as one result or the other has been computed. * @tsplus static effect/core/io/Effect.Aspects raceWith * @tsplus pipeable effect/core/io/Effect raceWith * @tsplus location "@effect/core/io/Effect/operations/raceWith" */ export declare function raceWith(that: Effect, leftDone: (exit: Exit, fiber: Fiber) => Effect, rightDone: (exit: Exit, fiber: Fiber) => Effect): (self: import("../definition").Effect) => import("../definition").Effect; //# sourceMappingURL=raceWith.d.ts.map