import { Effect } from "@effect/core/io/Effect/definition"; import { Collection } from "@tsplus/stdlib/collections/Collection/definition"; import { Chunk } from "@tsplus/stdlib/collections/Chunk/definition"; /** * Sequentially zips the this result with the specified result. Combines both * `Cause` when both effects fail. * @tsplus static effect/core/io/Effect.Aspects validate * @tsplus pipeable effect/core/io/Effect validate * @tsplus location "@effect/core/io/Effect/operations/validate" */ export declare function validateNow(that: Effect): (self: import("../definition").Effect) => import("../definition").Effect; /** * Feeds elements of type `A` to `f` and accumulates all errors in error * channel or successes in success channel. * * This combinator is lossy meaning that if there are errors all successes * will be lost. To retain all information please use `partition`. * @tsplus static effect/core/io/Effect.Ops validate * @tsplus location "@effect/core/io/Effect/operations/validate" */ export declare function validate(as: Collection, f: (a: A) => Effect): Effect, Chunk>; //# sourceMappingURL=validate.d.ts.map