export declare class LocalStorageItem { readonly key: string; private readonly _fallback; private constructor(); static of: (key: string) => LocalStorageItem; static withDefault: (key: string, fallback: T_1) => LocalStorageItem; get(): T | TFallback; remove(): void; set(value: T): void; }