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