import { Store } from './Store'; interface Stores { [key: string]: Store; } /** * Storage for anything */ export declare class Storage { static stores: Stores; static set(key: any, value: Store): void; static get(key: any): Store; } export {};