3. Dispatch as ReduxDispatch, 4. } from 'redux'; 5. import type { Action } from './Action'; 6. import type { State } from './State'; 7. 8. export type Store = ReduxStore<State, Action>; 9. 10. export type GetState = () => State; 11. 12. export type Dispatch = ReduxDispatch<Action> 13.