import { AuthenticationError } from './AuthenticationError'; /** * invalid token. * * @export * @class InvalidToken * @extends {AuthenticationError} */ export declare class InvalidToken extends AuthenticationError { error_detail: string; constructor(detail: string); static ρAnn(): any; }