export declare namespace Experimentation { type Transform = [ flag: Flags, selector: string, operation: Operations, ...rest: any ]; enum Flags { PreUA = 1, OnUA = 2, Once = 4 } enum Operations { CustomJs = 0, InsertBefore = 1, InsertAfter = 2, Prepend = 3, Append = 4, Replace = 5, SetInnerHtml = 6, Remove = 7, SetAttribute = 8, Redirect = 9 } }