import type * as runtime from "@cloudflare/workers-types"; import * as Stream from "effect/Stream"; type ReplaceEffectStream = T extends Stream.Stream ? runtime.ReadableStream : T; /** * If the value is an Effect stream, converts it to a ReadableStream. * Otherwise, returns the value unchanged. */ export declare function replaceEffectStream(value: T): ReplaceEffectStream; export {}; //# sourceMappingURL=stream.d.ts.map