import { Effect } from "@effect/core/io/Effect/definition"; /** * Returns an effect that executes both this effect and the specified effect, * in parallel, combining their results with the specified `f` function. If * both sides fail, then the cause will be combined. * @tsplus static effect/core/io/Effect.Aspects validateWithPar * @tsplus pipeable effect/core/io/Effect validateWithPar * @tsplus location "@effect/core/io/Effect/operations/validateWithPar" */ export declare function validateWithPar(that: Effect, f: (a: A, b: B) => C): (self: import("../definition").Effect) => import("../definition").Effect; //# sourceMappingURL=validateWithPar.d.ts.map