export declare enum AuthenticationMethods { ANONYMOUS = "anonymous", PASSWORD = "password", JWT = "jwt", RECONNECT = "reconnect" } export declare type AuthenticationMethod = AuthenticationMethods.ANONYMOUS | AuthenticationMethods.PASSWORD | AuthenticationMethods.JWT | AuthenticationMethods.RECONNECT;