/**
* Thrown when Token fails to parse a string token passed to its constructor.
*
* Sets a `status` property to 401 so this error can be treated as an HTTP error
* for convenience.
*/exportdeclareclassTokenParseErrorextendsError {
status: number;
constructor(message: string);
}