export declare const setCacheQuery: (cacheKey: string, query: Promise<any>) => void;
export declare const getCacheQuery: (cacheKey: string) => Promise<any> | undefined;
export declare const clearCacheQuery: (cacheKey?: string) => void;
