import { HttpException } from './httpException'; import { ErrorResponse } from '../../interfaces/errorResponse'; export declare class UnauthorizedException extends HttpException { readonly code: string | ErrorResponse; constructor(code?: string | ErrorResponse); }