import { ChangeHistoryEntityType } from './changeHistoryEntityType';
import { ChangeHistoryOperation } from './changeHistoryOperation';
import { ObjectValue } from './objectValue';
export interface ChangeHistoryValue extends ObjectValue {
    entityType?: ChangeHistoryEntityType;
    operation?: ChangeHistoryOperation;
}
