export interface AccessTokenHeader {
    kid: string;
    alg: string;
    typ: string;
}
export interface AccessTokenPayload {
    iat: number;
    iss: string;
    aud: string;
    exp: number;
    sub: string;
    azp: string;
    scope: string;
    occ: string;
}
//# sourceMappingURL=token-types.d.ts.map