import { Store } from './types'; export default class StorageStore implements Store { storage: Storage; constructor(storage: Storage); get(key: string): string | null; delete(key: string): boolean; set(key: string, value: any): this; }