import { HttpClient } from './src/common-http'; import { Provider } from 'injection-js'; import { Type } from 'injection-js/facade/type'; export declare const HTTP_CLIENT_PROVIDERS: Provider[]; export interface CreateHttpClientOptions { interceptors?: Type[]; } export declare function createHttpClient(options?: CreateHttpClientOptions): HttpClient; export * from './src/http'; export * from './src/common-http';