export function reduceRight<A, B>(
    rfn: Reducer<A, B>,
    acc: B,
    xs: ArrayLike<A>
): B;