type Key = string | symbol;
declare class MemoryStorage {
private scope;
data: Record<string, any>;
constructor(scope?: Key);
getItem(key: string): any;
setItem(key: string, value: any): void;
removeItem(key: string): void;
clear(): void;
}
export default MemoryStorage;