import type * as C from "../core.js"; /** * Zips this stream with another point-wise, but keeps only the outputs of the other stream. * * The new stream will end when one of the sides ends. */ export declare function zipRight_(self: C.Stream, that: C.Stream): C.Stream; /** * Zips this stream with another point-wise, but keeps only the outputs of the other stream. * * The new stream will end when one of the sides ends. * * @ets_data_first zipRight_ */ export declare function zipRight(that: C.Stream): (self: C.Stream) => C.Stream; //# sourceMappingURL=zipRight.d.ts.map