import { Stream } from "@effect/core/stream/Stream/definition"; /** * 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. * @tsplus static effect/core/stream/Stream.Aspects zipLeft * @tsplus pipeable effect/core/stream/Stream zipLeft * @tsplus location "@effect/core/stream/Stream/operations/zipLeft" */ export declare function zipLeft(that: Stream): (self: import("../definition").Stream) => import("../definition").Stream; //# sourceMappingURL=zipLeft.d.ts.map