export declare class LocalStoragePolyfill { private storage; getItem(key: string): string | null; setItem(key: string, value: string): void; removeItem(key: string): void; clear(): void; get length(): number; key(index: number): string | null; } //# sourceMappingURL=local-storage.d.ts.map