import { Stream } from "@effect/core/stream/Stream/definition"; /** * Drains the provided stream in the background for as long as this stream is * running. If this stream ends before `other`, `other` will be interrupted. * If `other` fails, this stream will fail with that error. * @tsplus static effect/core/stream/Stream.Aspects drainFork * @tsplus pipeable effect/core/stream/Stream drainFork * @tsplus location "@effect/core/stream/Stream/operations/drainFork" */ export declare function drainFork(other: Stream): (self: import("../definition").Stream) => import("../definition").Stream; //# sourceMappingURL=drainFork.d.ts.map