export default class AuthenticationTypeChangedEvent extends Event { static readonly eventName = "authenticationTypeChanged"; readonly authenticationType: string | null; constructor(authenticationType: string | null); } declare global { interface GlobalEventHandlersEventMap { [AuthenticationTypeChangedEvent.eventName]: AuthenticationTypeChangedEvent; } }