import { ILocalStorageStore } from './types.js'; import { WebStorageStore } from './web-storage.js'; /** * Local Storage Store * The store that makes use of Window.localStorage. */ declare class LocalStorageStore extends WebStorageStore implements ILocalStorageStore { constructor(id: string); } export { LocalStorageStore };