import { FastAxiosRequestConfig } from './options';
import { AxiosError, AxiosResponse, InternalAxiosRequestConfig } from 'axios';
type InterceptorsRequestHandle = (config: InternalAxiosRequestConfig) => void;
type InterceptorsRequestUseHandle = {
use: (fn: InterceptorsRequestHandle) => void;
};
type InterceptorsResponseHandle =