export default class JWTMemory { private jwt_token; private claims; constructor(); setJWT(jwt_token: string): void; getJWT(): string; getClaim(claim: string): string; clearJWT(): void; }