import { actionT, reducerT } from "./type";
declare class Store {
    state: object;
    reducer: reducerT;
    constructor(reducer: reducerT, action: actionT);
    dispatch: (action: actionT) => object;
}
export default Store;
