import type { SagaEvent } from '../coordinator/state.js'; /** * Append an event to the saga's events.jsonl. * This is the single source of truth for crash-resume arbitration (§2.1.1). */ export declare function appendEvent(stateRoot: string, sagaId: string, event: SagaEvent): Promise; /** * Read all events from events.jsonl. * Used for replay, crash-resume, and four-source arbitration. */ export declare function readEvents(stateRoot: string, sagaId: string): Promise; /** * Read only the last event — used for four-source arbitration. */ export declare function readTailEvent(stateRoot: string, sagaId: string): Promise; //# sourceMappingURL=events.d.ts.map