import { Either } from "@tsplus/stdlib/data/Either/definition"; /** * Reduce a value `B` through an `Either` in inverted order. * @tsplus static Either.Aspects reduceRight * @tsplus pipeable Either reduceRight * @tsplus location "@tsplus/stdlib/data/Either/reduceRight" */ export declare function reduceRight(b: B, f: (a: A, b: B) => B): (self: import("./definition").Either) => B; //# sourceMappingURL=reduceRight.d.ts.map