import { Stream } from "@effect/core/stream/Stream/definition"; import { Effect } from "@effect/core/io/Effect/definition"; import { Scope } from "@effect/core/io/Scope/definition"; import { Chunk } from "@tsplus/stdlib/collections/Chunk/definition"; /** * Fan out the stream, producing a list of streams that have the same elements * as this stream. The driver stream will only ever advance the `maximumLag` * chunks before the slowest downstream stream. * @tsplus static effect/core/stream/Stream.Aspects broadcast * @tsplus pipeable effect/core/stream/Stream broadcast * @tsplus location "@effect/core/stream/Stream/operations/broadcast" */ export declare function broadcast(n: number, maximumLag: number): (self: import("../definition").Stream) => import("../../../io/Effect").Effect>>; //# sourceMappingURL=broadcast.d.ts.map