// ets_tracing: off import type * as HKT from "../HKT/index.js" export interface ReduceRight extends HKT.Base { readonly _ReduceRight: "ReduceRight" readonly reduceRight: ( b: B, f: (a: A, b: B) => B ) => (fa: HKT.Kind) => B }