import AbstractAction from "./AbstractAction";
import type { ReduxDispatch } from "./ReduxDispatch";
export type Dispatch = (action: AbstractAction<any, any>) => void;
export default function createActionDispatcher(reduxDispatch: ReduxDispatch): Dispatch;