import { Http } from './types';
/**
 * Cache for remembering values that change relatively seldom,
 * such as device and workspace metadata.
 */
declare class Cache {
    private store;
    fetch(http: Http, url: string): Promise<any>;
    private get;
    private set;
}
export default Cache;
