import { AxiosInstance } from "axios"; export interface ClientRetryOptions { retryTime: number; wait?: number; } declare class ClientRetry { protected axiosInstance: AxiosInstance; private options; constructor(axiosInstance: AxiosInstance, options?: Partial); setOptions: (options: Partial) => void; handleRetry: () => void; } export default ClientRetry;