import type * as C from "../core.js"; /** * Interleaves this stream and the specified stream deterministically by * alternating pulling values from this stream and the specified stream. * When one stream is exhausted all remaining values in the other stream * will be pulled. */ export declare function interleave_(self: C.Stream, that: C.Stream): C.Stream; /** * Interleaves this stream and the specified stream deterministically by * alternating pulling values from this stream and the specified stream. * When one stream is exhausted all remaining values in the other stream * will be pulled. * * @ets_data_first interleave_ */ export declare function interleave(that: C.Stream): (self: C.Stream) => C.Stream; //# sourceMappingURL=interleave.d.ts.map