import { GenericEvent } from '@rxstack/async-event-dispatcher';
import { TokenInterface } from '@rxstack/core';
export declare class AuthenticationEvent extends GenericEvent {
authenticationToken: TokenInterface;
constructor(authenticationToken: TokenInterface);
}