declare class CacheApi {
    private static hostname;
    static getCacheAPI(cacheStorageName: string, key: string): Promise<string | null>;
    static putCacheAPIkey(cacheStorageName: string, key: string, content: string): Promise<void>;
    static deleteCacheAPIkey(cacheStorageName: string, key: string): Promise<any>;
}
export default CacheApi;
