import { JwtToken } from './jwt-issuer'; /** A client for consuming json web tokens. */ export declare abstract class JwtClient { /** Parses the contents of a token. */ static parse(token: string): T; }