import { SyncAdapter } from '../../core/Low'; export declare class WebStorage implements SyncAdapter { __key: string; __storage: Storage; constructor(key: string, storage: Storage); read(): T | null; write(obj: T): void; }