import type * as CL from "../../../../Clock/index.js"; import * as SC from "../../../../Schedule/index.js"; import * as C from "../core.js"; /** * Schedules the output of the stream using the provided `schedule` and emits its output at * the end (if `schedule` is finite). * Uses the provided function to align the stream and schedule outputs on the same type. */ export declare function scheduleWith_(self: C.Stream, schedule: SC.Schedule, f: (a: A) => C1, g: (b: B) => C2): C.Stream; /** * Schedules the output of the stream using the provided `schedule` and emits its output at * the end (if `schedule` is finite). * Uses the provided function to align the stream and schedule outputs on the same type. * * @ets_data_first scheduleWith_ */ export declare function scheduleWith(schedule: SC.Schedule, f: (a: A) => C1, g: (b: B) => C2): (self: C.Stream) => C.Stream; //# sourceMappingURL=scheduleWith.d.ts.map