import { EventArgs } from "jzo-library"; import { AuthenticationState } from "./types"; export declare class AuthenticationStateChangedEventArgs extends EventArgs { private _state; constructor(state: AuthenticationState); get state(): AuthenticationState; }