import { KeyValueStorage, Scope, ScopedStorage } from './types'; export declare class ScopedAsyncStorage extends ScopedStorage implements KeyValueStorage { constructor(scope: Scope, module?: string); storeObject(key: string, item: T): Promise; loadObject(key: string): Promise; setItem(key: string, value: string): Promise; getItem(key: string): Promise; removeItem(key: string): Promise; clear(): Promise; }