import { CacheStorage } from '../../interfaces';
/** Class representing in-memory caching store */
export declare class InMemoryCache {
    /**
     * This function generate a encapsulation function to store
     * the user and token information in a secure way disabled the
     * access from the outside
     * @see {https://medium.com/javascript-scene/encapsulation-in-javascript-26be60e325b4} Encapsulation
     * @return {CacheStorage} Key for the token
     */
    generateCache: CacheStorage;
}
