import * as CK from "../../../../Collections/Immutable/Chunk/index.js"; import * as M from "../../../../Managed/index.js"; import type * as C from "../core.js"; /** * 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. */ export declare function broadcast_(self: C.Stream, n: number, maximumLag: number): M.RIO>>; /** * 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. * * @ets_data_first broadcast_ */ export declare function broadcast(n: number, maximumLag: number): (self: C.Stream) => M.RIO>>; //# sourceMappingURL=broadcast.d.ts.map