export declare abstract class ILocalStorage implements Storage { abstract length: number; abstract clear(): void; abstract getItem(key: string): string | null; abstract key(index: number): string | null; abstract removeItem(key: string): void; abstract setItem(key: string, value: string): void; } //# sourceMappingURL=ILocalStorage.d.ts.map