import BaseError from './base'; declare class CommsResponseError extends BaseError { readonly data: any; readonly status: any; readonly headers: any; readonly requestMethod: string; readonly requestPath: string; readonly requestParams?: any; readonly requestData?: any; constructor(data: any, status: any, headers: any, requestMethod: string, requestPath: string, requestParams?: any, requestData?: any); get formattedMessage(): string; } export default CommsResponseError;