import { Store } from "./store"; export declare class BrowserStore implements Store { private readonly browserStorage; private memoryStore; constructor(storage?: S); static isLocalStorageAvailable(): boolean; get(key: string): T | null; set(key: string, value: T): T | null; remove(key: string): void; }