import type { ScheduleMode } from "../domain/schedule.js"; export interface PlannedExecution { runnerId: string; item: TItem; } export declare function scheduleExecutions(executions: PlannedExecution[], scheduleMode: ScheduleMode, maxParallel: number, execute: (execution: PlannedExecution) => Promise): Promise;