import { ERROR_TYPE } from '../constants'; export declare class RMQError extends Error { message: string; code?: number | string; data?: any; service?: string; host?: string; type?: ERROR_TYPE; constructor(message: string, type: ERROR_TYPE, code?: number | string, data?: any, service?: string, host?: string); }