// Copyright © 2022-2026 Partium, Inc. DBA Partium /** * Token claims of the user token that are used in Partium client */ export interface UserToken { sub: string; preferred_username: string; role: string; email?: string; groups?: string[]; [key: string]: any; } /** * Decodes jwt token string and returns an object with type UserToken */ export declare function createUserToken(token: string): UserToken;