import { StorageStrategy } from './StorageStrategy'; declare class WindowNameStorage implements StorageStrategy { store(key: string, data: string): void; retrieve(key: string): string | undefined; remove(key: string): void; static clear(): void; } export default WindowNameStorage;