export function zip<A, B>(
    a: MaybeAsyncIterable<A>,
    b: MaybeAsyncIterable<B>
): AsyncIterableIterator<[A, B]>;