export declare class Token { private $raw; private $timeout; private claims; constructor(token: string); private split; private parse; private b64DecodeUnicode; claim(key: string): any; get raw(): string; get timeout(): number; }