export type StoreContext = { hasItem(key: string): Promise; setItem(key: string, value: string | null): Promise; getItem(key: string): Promise; removeItem(key: string): Promise; clear(): Promise; all(): Promise>; }; //# sourceMappingURL=store-context.d.ts.map