import { Stream } from "@effect/core/stream/Stream/definition"; import { Take } from "@effect/core/stream/Take/definition"; import { Exit } from "@effect/core/io/Exit/definition"; import { Maybe } from "@tsplus/stdlib/data/Maybe/definition"; import { Chunk } from "@tsplus/stdlib/collections/Chunk/definition"; /** * Unwraps `Exit` values and flatten chunks that also signify end-of-stream * by failing with `None`. * @tsplus getter effect/core/stream/Stream flattenTake * @tsplus location "@effect/core/stream/Stream/operations/flattenTake" */ export declare function flattenTake(self: Stream>): Stream; //# sourceMappingURL=flattenTake.d.ts.map