import type { RunEvent } from "../engine/types.ts"; import type { Outline, ProgressView } from "./types.ts"; /** * Join a workflow's outline with a run's events (progress §3). `now` supplies the live half of every * unfinished duration and is the ONLY non-deterministic input — pass the same `now` twice and this * returns the same view twice. */ export declare function project(outline: Outline, events: readonly RunEvent[], now: Date): ProgressView; //# sourceMappingURL=project.d.ts.map