/** * Thrown by event storage implementations when a concurrency conflict is detected * (e.g. duplicate aggregate version). When this error is thrown during event dispatch, * AggregateCommandHandler can automatically retry the command by re-creating * the aggregate from the event store. */ export declare class ConcurrencyError extends Error { constructor(message?: string, options?: ErrorOptions); }