## Summary Jotai doesn't export the `Store` type for `createStore` ## Link to reproduction ```ts const store: ??? = createStore() ``` ## Workaround ```ts const store: ReturnType<typeof createStore> = createStore() ``` ## Question Is there a reason why it's not exported?