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