/** * AbstractError class */ declare class AbstractError extends Error { constructor(message: string); } /** * Error thrown when a user is not authorized anymore */ export declare class UnauthorizedError extends AbstractError { code: number; constructor(message: string, code?: number); } export {};