import { Stream } from "@effect/core/stream/Stream/definition"; import { Channel } from "@effect/core/stream/Channel/definition/base"; import { Chunk } from "@tsplus/stdlib/collections/Chunk/definition"; import { _A, _E, _R, StreamSym } from "@effect/core/stream/Stream/definition"; export declare class StreamInternal implements Stream { readonly channel: Channel, unknown>; readonly [StreamSym]: StreamSym; readonly [_R]: () => R; readonly [_E]: () => E; readonly [_A]: () => A; constructor(channel: Channel, unknown>); } /** * @tsplus macro remove */ export declare function concreteStream(_: Stream): asserts _ is StreamInternal; //# sourceMappingURL=StreamInternal.d.ts.map