export declare class TokenPayload { /** * Shows if the token is valid, e.g. it has not expired */ isValid(): boolean; /** * Unix timestamp in microseconds */ get expires(): number | undefined; }