/** * @fileoverview Sequential execution scheduler for fitness recipe checks * * Runs fitness checks one at a time. Release 2.13.0 (ยง5.8): the loop + the * between-iteration abort check now live in the shared execution substrate * (`scheduleUnits`); this file keeps only the fitness setup + the per-check * `runOneCheck` body. */ import type { ExecutionOptions, ExecutionServiceContext } from './parallel-execution.js'; /** Execute fitness checks sequentially with per-check timeouts and retry support */ export declare function executeSequential(ctx: ExecutionServiceContext, opts: ExecutionOptions): Promise; //# sourceMappingURL=sequential-execution.d.ts.map