import * as Tp from "../../../../Collections/Immutable/Tuple/index.js"; import type * as C from "../core.js"; /** * Zips this stream with another point-wise, creating a new stream of pairs of elements * from both sides. * * The defaults `defaultLeft` and `defaultRight` will be used if the streams have different lengths * and one of the streams has ended before the other. */ export declare function zipAll_(self: C.Stream, that: C.Stream, defaultLeft: A, defaultRight: A1): C.Stream>; /** * Zips this stream with another point-wise, creating a new stream of pairs of elements * from both sides. * * The defaults `defaultLeft` and `defaultRight` will be used if the streams have different lengths * and one of the streams has ended before the other. * * @ets_data_first zipAll_ */ export declare function zipAll(that: C.Stream, defaultLeft: A, defaultRight: A1): (self: C.Stream) => C.Stream>; //# sourceMappingURL=zipAll.d.ts.map