export declare const OperationType: {
    readonly CreateElement: 1;
    readonly SetAttribute: 2;
    readonly RemoveAttribute: 3;
    readonly Append: 4;
    readonly Remove: 5;
    readonly ReplaceWith: 6;
    readonly InsertBefore: 7;
    readonly EnableEvent: 8;
    readonly RemoveChild: 9;
    readonly StyleDeclarationSetProperty: 10;
    readonly StyleDeclarationRemoveProperty: 11;
    readonly SetInnerHTML: 12;
    readonly sheetInsertRule: 13;
    readonly sheetRuleUpdateCssText: 14;
};
