import { Stream } from "@effect/core/stream/Stream/definition"; /** * Composes this stream with the specified stream to create a cartesian * product of elements, but keeps only elements from that stream. The `that` * stream would be run multiple times, for every element in the `this` stream. * * See also `Stream.zipRight` for the more common point-wise variant. * @tsplus pipeable-operator effect/core/stream/Stream > * @tsplus static effect/core/stream/Stream.Aspects crossRight * @tsplus pipeable effect/core/stream/Stream crossRight * @tsplus location "@effect/core/stream/Stream/operations/crossRight" */ export declare function crossRight(that: Stream): (self: import("../definition").Stream) => import("../definition").Stream; //# sourceMappingURL=crossRight.d.ts.map