export interface Bifunctor { bimap(fnLeft: (al: AL) => BL, fnRight: (ar: AR) => BR): Bifunctor; } export default Bifunctor;