import { Store } from 'redux'; import { StoreState } from '../reducers/index.js'; import { StoreAction } from '../actions/index.js'; export default function configureStore(callback: (store: Store) => void): { store: Store & { dispatch: unknown; }; persistor: import("redux-persist").Persistor; };