export declare class Store { private store; getStoreItem: (storeKey: string) => Promise; hasItem: (storeKey: string) => Promise; setStoreItem: (storeKey: string, value: any) => Promise>; }