import * as C from "../core.js"; /** * Returns a stream made of the concatenation in strict order of all the streams * produced by passing each element of this stream to `f` */ export declare function chain_(self: C.Stream, f: (o: O) => C.Stream): C.Stream; /** * Returns a stream made of the concatenation in strict order of all the streams * produced by passing each element of this stream to `f` * * @ets_data_first chain_ */ export declare function chain(f: (o: O) => C.Stream): (self: C.Stream) => C.Stream; //# sourceMappingURL=chain.d.ts.map