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