import { DomainEvent } from "../domain/domain.event"; export declare const DomainEventSchema: { name: string; target: typeof DomainEvent; tableName: string; columns: { id: { type: StringConstructor; primary: boolean; }; transactionID: { type: StringConstructor; }; subject: { type: StringConstructor; nullable: boolean; }; eventData: { type: StringConstructor; nullable: boolean; }; createdOn: { type: StringConstructor; }; createdBy: { type: StringConstructor; }; }; };