import { CRUDEventData } from "./crud.event"; export declare abstract class EntityModifiedEventData extends CRUDEventData { private _fieldName; private _newValue; private _oldValue; constructor(modifiedBy: string, _fieldName: string, _newValue: string, _oldValue: string, entityID: string, aggregateRootID: string); get fieldName(): string; get newValue(): string; get oldValue(): string; }