import { Schema } from 'effect'; /** * Domain event schema * Events represent facts that have happened in the domain */ export declare const Event: Schema.Struct<{ position: Schema.Struct<{ streamId: Schema.brand, "EventStreamId">; eventNumber: Schema.filter; }>; type: typeof Schema.String; data: typeof Schema.Unknown; timestamp: typeof Schema.Date; }>; export type Event = typeof Event.Type; //# sourceMappingURL=domainTypes.d.ts.map