export declare const generateCacheKey: (module: string, path: string, method: string, query: object) => string; export declare const getCacheKey: () => any; export declare const getCache: () => Promise; export declare const setCache: (data: unknown) => Promise; export declare const delCache: () => Promise; export declare const flushCache: (module?: string) => Promise; export declare const setWarmList: (module: string, list: Array) => Promise>; export declare const getWarmList: (module: string) => Promise>; export declare const getModuleSetting: (name: string) => Promise; export declare const callWarmupCache: (module: string, data: any) => Promise<{ status: boolean; }>;