import { HttpInterceptor, HttpRequest, HttpHandler, HttpEvent } from '@angular/common/http'; import { Observable } from 'rxjs'; import { NgrxRequestService } from './service'; import { Store } from '@ngrx/store'; import { State } from './reducer'; export declare class NgrxRequestInterceptor implements HttpInterceptor { private service; private store; constructor(service: NgrxRequestService, store: Store); intercept(req: HttpRequest, next: HttpHandler): Observable>; private _handleResponse; }