import { DomainEvent } from "./domain.event"; export declare class DataModifiedEvent extends DomainEvent { readonly id: string; readonly name: string; readonly fieldName: string; readonly modifiedOn: Date; readonly modifiedBy: string; readonly newValue?: string | undefined; readonly oldValue?: string | undefined; readonly newValueNumber?: number | undefined; readonly oldValueNumber?: number | undefined; readonly newValueDate?: Date | undefined; readonly oldValueDate?: Date | undefined; constructor(id: string, name: string, fieldName: string, modifiedOn: Date, modifiedBy: string, newValue?: string | undefined, oldValue?: string | undefined, newValueNumber?: number | undefined, oldValueNumber?: number | undefined, newValueDate?: Date | undefined, oldValueDate?: Date | undefined); }