import type { RunEvent } from "./types.js";
export declare class EventLog {
    private sequence;
    private events;
    push(runId: string, type: RunEvent["type"], payload?: Record<string, unknown>, stepRunId?: string, actor?: string): RunEvent;
    all(): RunEvent[];
}
