import type * as HKT from "../HKT/index.js"; export interface ReduceRightWithIndex extends HKT.Base { readonly _ReduceRightWithIndex: "ReduceRightWithIndex"; readonly reduceRightWithIndex: ReduceRightWithIndexFn; } export interface ReduceRightWithIndexFn { (b: B, f: (k: HKT.IndexFor>, a: A, b: B) => B): (fa: HKT.Kind) => B; } //# sourceMappingURL=index.d.ts.map