export type ClaimValue = string | number | boolean | {
    [key: string]: ClaimValue;
} | Array<ClaimValue>;
