import { Stream } from "@effect/core/stream/Stream/definition"; /** * Concatenates the specified stream with this stream, resulting in a stream * that emits the elements from this stream and then the elements from the * specified stream. * @tsplus pipeable-operator effect/core/stream/Stream + * @tsplus static effect/core/stream/Stream.Aspects concat * @tsplus pipeable effect/core/stream/Stream concat * @tsplus location "@effect/core/stream/Stream/operations/concat" */ export declare function concat(that: Stream): (self: import("../definition").Stream) => import("../definition").Stream; //# sourceMappingURL=concat.d.ts.map