import { Sequence } 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 {Sequence} other * @returns {Sequence<[T , S]>} */ zip(this: Sequence, other: Sequence): Sequence<[T, S]>; }