import type { AxiosError, AxiosInstance } from 'axios'; /** * 请求重试机制 */ export declare class AxiosRetry { /** * 重试 */ retry(AxiosInstance: AxiosInstance, error: AxiosError): Promise>; /** * 延迟 */ private delay; }