import { HttpClientOptions, HttpClientResponse } from "../httpClient/httpClient";
export default interface HttpClientInterface {
    /**
     * HTTP request
     * @param options url, headers,...
     * @returns the result of the HTTP call
     *
     * expected to throw only AdtException errors
     */
    request: (options: HttpClientOptions) => Promise<HttpClientResponse>;
}
//# sourceMappingURL=httpClientInterface.d.ts.map