export declare type About = { /** * indicates if the Connector is running in Proxy Mode. In this mode all published Event API Products in Event Portal are automatically available as APIs in the connector */ APIS_PROXY_MODE?: boolean; /** * indicates if the Connector is running in Event Portal 1 or Event Portal 2.0 mode */ EVENT_PORTAL_VERSION?: About.EVENT_PORTAL_VERSION; /** * version information */ version?: any; }; export declare namespace About { /** * indicates if the Connector is running in Event Portal 1 or Event Portal 2.0 mode */ enum EVENT_PORTAL_VERSION { _1 = "1", _2 = "2" } }