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