import type * as C from "../core.js"; /** * 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. */ export declare function drainFork_(self: C.Stream, other: C.Stream): C.Stream; /** * 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. * * @ets_data_first drainFork_ */ export declare function drainFork(other: C.Stream): (self: C.Stream) => C.Stream; //# sourceMappingURL=drainFork.d.ts.map