import { TokenResponse } from "@openid/appauth/built/token_response"; export declare class Identity { name: string; claims: Claim[]; static createFromResponse(res: TokenResponse): Identity; private static decodeToken; } export declare class Claim { name: string; values: string[]; constructor(name: string, values: string[]); }