import { type TimelineEvent } from "../protocol/v2/index.js"; export type TimelineProjection = Readonly<{ branchPosition: number; event: TimelineEvent; }>; /** Sequence only persisted formal targets; marker and recovery pass order are not ordinal inputs. */ export declare function sequenceTimelineProjections(projections: readonly TimelineProjection[]): TimelineEvent[];