import { Layer } from "@effect/core/io/Layer/definition"; import { Env } from "@tsplus/stdlib/service/Env"; /** * Combines this layer the specified layer, producing a new layer that has the * inputs of both, and the outputs of both combined using the specified * function. * @tsplus static effect/core/io/Layer.Aspects zipWithPar * @tsplus pipeable effect/core/io/Layer zipWithPar * @tsplus location "@effect/core/io/Layer/operations/zipWithPar" */ export declare function zipWithPar(that: Layer, f: (a: Env, b: Env) => Env): (self: import("@effect/core/io/Layer/definition").Layer) => import("@effect/core/io/Layer/definition").Layer; //# sourceMappingURL=zipWithPar.d.ts.map