import { CacheStore, CacheType } from '../types';
export declare class CacheFactory {
    static createCache(cacheType?: CacheType, storageType?: 'localStorage' | 'indexedDB'): CacheStore;
}
