import { CRUDEventData } from "./crud.event"; export declare abstract class EntityDeletedEventData extends CRUDEventData { private _justification; constructor(createdBy: string, _justification: string, entityID: string, aggregateRootID: string); get justification(): string; }