import { Constructable } from "../types/constructable";
import { AbstractReduxModule } from "../decorators/module/module.decorator";
import { InstanceContainer } from "../container/instance-container";
import { Store } from "redux";
export declare function createReduxStore<ActionTree>(moduleTarget: Constructable<AbstractReduxModule>): {
    container: InstanceContainer;
    reduxActions: ActionTree;
    reduxStore: Store<any, import("redux").AnyAction>;
};
//# sourceMappingURL=create-store.d.ts.map