import { EventType } from '../EventType'; import { EventTypeId } from '../EventTypeId'; /** * Represents an uncommitted aggregate event. */ export declare abstract class UncommittedAggregateEvent { /** * An event type or an identifier representing the event type. * @summary If no event type identifier or event type is supplied, it will look for associated event types based * on the actual type of the event. */ eventType?: EventType | EventTypeId; /** * The content of the event. */ content: any; /** * Indicates whether the event is public or not. */ public?: boolean; } //# sourceMappingURL=UncommittedAggregateEvent.d.ts.map