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