import * as C from "../core.js"; /** * Concatenates the specified stream with this stream, resulting in a stream * that emits the elements from this stream and then the elements from the specified stream. */ export declare function concat_(self: C.Stream, that: C.Stream): C.Stream; /** * Concatenates the specified stream with this stream, resulting in a stream * that emits the elements from this stream and then the elements from the specified stream. * * @ets_data_first concat_ */ export declare function concat(that: C.Stream): (self: C.Stream) => C.Stream; //# sourceMappingURL=concat.d.ts.map