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