import type { AttemptRuntimeState, TaskRuntimeProjection } from "./task-runtime.ts"; /** * Project the latest logical-agent attempt from the attempt projection's durable insertion order. * Event replay appends every new attempt to this record, including a retry queued against an older * task, so task grouping, UUID spelling, and tied clocks never participate in lifecycle selection. */ export declare function latestAgentAttemptsByDurableOrder(snapshot: Pick): Map; export declare function latestAgentAttemptByDurableOrder(snapshot: Pick, agentId: string): AttemptRuntimeState | undefined; //# sourceMappingURL=attempt-ordering.d.ts.map