import { JwtClaims } from '../jwt/jwt-claims'; /** * Converts the given claims into a nested JS object for esier access. * * @param claims the JWT token claims * @returns the nested JWT token claims */ export declare function nest(claims: JwtClaims): JwtClaims;