import type { Lazy } from "../Function"; export declare const foldl: ( onNil: Lazy, onCons: (head: A, tail: readonly A[]) => B ) => (as: readonly A[]) => B; export declare const foldr: ( onNil: Lazy, onCons: (init: readonly A[], last: A) => B ) => (as: readonly A[]) => B; //# sourceMappingURL=destructors.d.ts.map