/**
 * @Title: 请求列表
 * @Describe:
 * @Author: Wzw
 */
export declare let requestList: {
    [key: string]: AbortController;
};
/**
 * @Title: 创建一个控制器
 * @Describe:
 * @Author: Wzw
 * @param {string} key
 */
export declare const createController: (key: string) => AbortController;
/**
 * @Title: 储存请求
 * @Describe:
 * @Author: Wzw
 * @param {AbortController} controller
 * @param {string} key
 */
export declare const setRequestList: (controller: AbortController, key: string) => void;
/**
 * @Title: 取消请求
 * @Describe:
 * @Author: Wzw
 * @param {string} key
 */
export declare const abortRequest: (key: string) => void;
/**
 * @Title: 创建signal
 * @Describe:
 * @Author: Wzw
 * @param {string} isAbort
 * @param {string} url
 */
export declare const createSignal: (isAbort: boolean, url: string) => AbortSignal | null;
