import type { Monoid } from "@principia/prelude/Monoid"; import type { Tree } from "./model"; export declare const reduce_: (fa: Tree, b: B, f: (b: B, a: A) => B) => B; export declare const reduce: (b: B, f: (b: B, a: A) => B) => (fa: Tree) => B; export declare const reduceRight_: (fa: Tree, b: B, f: (a: A, b: B) => B) => B; export declare const reduceRight: (b: B, f: (a: A, b: B) => B) => (fa: Tree) => B; export declare const foldMap_: (M: Monoid) => (fa: Tree, f: (a: A) => M) => M; export declare const foldMap: (M: Monoid) => (f: (a: A) => M) => (fa: Tree) => M; //# sourceMappingURL=foldable.d.ts.map