export default class ErrorResponseService { private translateFactory; constructor(translateFactory: any); getErrorMessage(response: { data?: { message?: string; Message?: string; }; }): any; shouldHandleError(response: { status: number; }): boolean; }