import { AsyncSequence } from "../../sequency"; export declare class Zip { /** * Returns a new sequence consisting of pairs built the elements of both sequences * with the same index. The resulting sequence has the length of the shortest input * sequence. All other elements are discarded. * * @param {AsyncSequence} other * @returns {AsyncSequence<[T , S]>} */ zip(this: AsyncSequence, other: AsyncSequence): AsyncSequence<[T, S]>; }