import { FastAxiosRequestConfig } from './options';
import { AxiosResponse, InternalAxiosRequestConfig } from 'axios';
type CryptoEncryptHandle = (config: InternalAxiosRequestConfig, timestamp: number) => void;
type CryptoEncryptUseHandle = {
use: (fn: CryptoEncryptHandle) => void;
};
type CryptoDecryptHandle =