export interface DecodedAccessToken { readonly fingerprint: string; readonly sub: string; readonly first_name: string; readonly last_name: string; readonly email: string; readonly iss: string; readonly scope: string[]; readonly projects: string[]; readonly aud: string; readonly jti: string; readonly iat: number; readonly exp: number; } //# sourceMappingURL=decoded-access-token.interface.d.ts.map