/**@description You can save and load any object by calling this class instead of LocalStorage */ interface GlobalStorageModel { load: (id: string) => any; save: (id: string, value: any) => string; } declare const GlobalStorage: GlobalStorageModel; export default GlobalStorage;