/** * * * Associates a JWT or authentication token with the group context in which it is valid. */ export declare class TokenWithGroup { /** * * The authentication token string. */ token: string; /** * * The identifier of the group this token is scoped to. */ groupId: string; /** * * The human-readable name of the group, if available. */ groupName: string | undefined; constructor(partial: Partial & Pick); toJSON(): object; static fromJSON(json: any, ignoreUnknownKeys?: boolean, path?: Array): TokenWithGroup; }