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