export interface Foldable { reduce(reducer: (accumulator: U, value: T) => U, initialValue: U): U; 'fantasy-land/reduce'?: Foldable['reduce']; }