import { HttpClient } from "@angular/common/http"; import { AjaxConfig, BreezeConfig, AjaxRequestInterceptor, AjaxAdapter } from "breeze-client"; export declare class AjaxHttpClientAdapter implements AjaxAdapter { http: HttpClient; static adapterName: string; name: string; defaultSettings: {}; requestInterceptor: AjaxRequestInterceptor; constructor(http: HttpClient); static register(http: HttpClient, breezeConfig?: BreezeConfig): AjaxHttpClientAdapter; initialize(): void; ajax(config: AjaxConfig): void; }