import { HttpEvent, HttpHandler, HttpInterceptor, HttpRequest } from '@angular/common/http'; import { Observable } from 'rxjs'; export declare class CustomHttpInterceptor implements HttpInterceptor { private url; constructor(url: string); intercept(req: HttpRequest, next: HttpHandler): Observable>; }