import { ObjectValue } from './objectValue';
import { ChangeHistoryEntityType } from './changeHistoryEntityType';
import { ChangeHistoryOperation } from './changeHistoryOperation';
export declare class ChangeHistoryValue extends ObjectValue {
    protected static XSI_TYPE: string;
    entityType: ChangeHistoryEntityType;
    operation: ChangeHistoryOperation;
    constructor(entityType?: ChangeHistoryEntityType, operation?: ChangeHistoryOperation);
}
