import { Stream } from "@effect/core/stream/Stream/definition"; /** * Zips this stream with another point-wise, and keeps only elements from this * stream. * * The provided default value will be used if the other stream ends before * this one. * @tsplus static effect/core/stream/Stream.Aspects zipAllLeft * @tsplus pipeable effect/core/stream/Stream zipAllLeft * @tsplus location "@effect/core/stream/Stream/operations/zipAllLeft" */ export declare function zipAllLeft(that: Stream, def: A): (self: import("../definition").Stream) => import("../definition").Stream; //# sourceMappingURL=zipAllLeft.d.ts.map