export declare class AccessToken {
    readonly jwt: string;
    private readonly decodedToken;
    constructor(token: string);
    get identity(): string;
    get displayName(): string | undefined;
    get expiration(): number;
    get location(): string | undefined;
    get altLocation(): string | undefined;
    get locations(): string[] | undefined;
}
