import { RetryConfig } from "rxjs";
export declare const httpService: import("axios").AxiosInstance;
/**
 * ```
 * const result = await retryWithDelay(() => promiseFunction(params), { delay: 1000, count:10 } )
 * ```
 **/
export declare const retryWithDelay: <T>(promise: () => Promise<T>, retryConfig: Omit<RetryConfig, "resetOnSuccess">) => Promise<T>;
