import { UpGradeClientInterfaces } from '../types'; export declare class DefaultHttpClient implements UpGradeClientInterfaces.IHttpClientWrapper { private skipRetryOnStatusCodes; config: UpGradeClientInterfaces.IHttpClientWrapperRequestConfig; doGet(url: string, options: UpGradeClientInterfaces.IHttpClientWrapperRequestConfig): Promise; doPost(url: string, body: RequestBodyType, options: UpGradeClientInterfaces.IHttpClientWrapperRequestConfig): Promise; doPatch(url: string, body: RequestBodyType, options: UpGradeClientInterfaces.IHttpClientWrapperRequestConfig): Promise; private wait; private fetchData; }