import type { ExecutionEvent, JobContext } from './types'; /** * Transform raw activities + job context into a chronological event list * with back-references linking completions to their scheduled events. */ export declare function buildEvents(ctx: JobContext, inputByNameDim: Map>): ExecutionEvent[];