import { Stream } from "@effect/core/stream/Stream/definition"; import { Chunk } from "@tsplus/stdlib/collections/Chunk/definition"; /** * Takes a stream that emits chunks of values and submerges the chunks into the * structure of the stream, effectively "flattening" the chunks into the stream. * @tsplus getter effect/core/stream/Stream unchunks * @tsplus location "@effect/core/stream/Stream/operations/unchunks" */ export declare function unchunks(self: Stream>): Stream; //# sourceMappingURL=unchunks.d.ts.map