import { AxiosRequestConfig, Canceler } from "axios"; export declare class CancelerCache { static cache: Map; static saveCanceler(key: string, canceler: Canceler): void; static cancel(key: string): void; static delete(key: string): void; static check(config: AxiosRequestConfig): void; } export declare const patterns: Array<{ pattern: RegExp; getKey: string | ((config: AxiosRequestConfig, pattern: RegExp) => string); }>;