import { HttpEvent, HttpHandler, HttpInterceptor, HttpRequest } from "@ngify/http";
import { Observable } from "rxjs";
export declare const HTTP_INTERCEPTOR: import("@wendellhu/redi/esm/dependencyIdentifier").IdentifierDecorator<HttpInterceptor[]>;
export declare class NoopInterceptor implements HttpInterceptor {
    intercept(request: HttpRequest<unknown>, next: HttpHandler): Observable<HttpEvent<unknown>>;
}
