import type { compose } from 'redux'; import { Store } from './types'; import { InitialStateData } from './types/state'; declare global { interface Window { __REDUX_DEVTOOLS_EXTENSION_COMPOSE__?: (opts: { name?: string; }) => typeof compose; } } export default function finalCreateStore(initialStateData: InitialStateData): Store; //# sourceMappingURL=createStore.d.ts.map