export function transduce<A, B, C>(
    xform: AsyncTxLike<A, B>,
    reducer: AsyncReducer<B, C>,
    src: MaybeAsyncIterable<A>
): Promise<C>;