import type * as CL from "../../../../Clock/index.js"; import * as SC from "../../../../Schedule/index.js"; import * as C from "../core.js"; /** * Repeats the entire stream using the specified schedule. The stream will execute normally, * and then repeat again according to the provided schedule. The schedule output will be emitted at * the end of each repetition and can be unified with the stream elements using the provided functions. */ export declare function repeatWith_(self: C.Stream, schedule: SC.Schedule, f: (a: A) => C1, g: (b: B) => C2): C.Stream; /** * Repeats the entire stream using the specified schedule. The stream will execute normally, * and then repeat again according to the provided schedule. The schedule output will be emitted at * the end of each repetition and can be unified with the stream elements using the provided functions. * * @ets_data_first repeatWith_ */ export declare function repeatWith(schedule: SC.Schedule, f: (a: A) => C1, g: (b: B) => C2): (self: C.Stream) => C.Stream; //# sourceMappingURL=repeatWith.d.ts.map