import { ICache } from './interfaces'; /** * Save the cache to the cache path. * @param cacheName The name of the cache to save. * @param env The environment used 'mainnet-beta' | 'devnet' | 'testnet' * @param cacheContent The content of the cache to save. */ export declare function saveCache(cacheName: string, env: string, cacheContent: ICache): void;