import Either from '../../implementations/Either'; export default function either(cbLeft: (a: A) => C, cbRight: (b: B) => C): (e: Either) => C;