import Store from "./Store";
import { actionT, reducerT } from "./type";
declare const createStore: (reducer: reducerT, action?: actionT) => Store;
export default createStore;
