interface StoreInterface { load: (key: StoreKey) => Promise; save: (key: StoreKey, data: unknown) => Promise; }