/**
 * © Copyright Outburn Ltd. 2022-2024 All Rights Reserved
 *   Project name: FUME-COMMUNITY
 */
import { ICacheClass } from '../../types/FumeServer';
import { IAppCache, IAppCacheKeys } from './cacheTypes';
export interface InitCacheConfig {
    cacheClass: ICacheClass;
    cacheClassOptions: Record<string, any>;
}
export declare function initCache(options?: Partial<Record<IAppCacheKeys, InitCacheConfig>>): void;
export declare function getCache(): IAppCache;
//# sourceMappingURL=cache.d.ts.map