import type { Action, Dispatch } from 'redux'; import type { MapDispatchToPropsParam } from './selectorFactory'; export declare function mapDispatchToPropsFactory(mapDispatchToProps: MapDispatchToPropsParam | undefined): ((dispatch: Dispatch) => { (): import("redux").ActionCreatorsMapObject | import("redux").ActionCreator | { dispatch?: Dispatch | undefined; dependsOnOwnProps?: boolean | undefined; }; dependsOnOwnProps: boolean; }) | ((dispatch: Dispatch>, options: { readonly wrappedComponentName: string; }) => never) | ((dispatch: Dispatch, { displayName }: { displayName: string; }) => { (stateOrDispatch: { [key: string]: any; } | Dispatch, ownProps?: { [key: string]: any; } | undefined): import("./wrapMapToProps").MapToProps<{ [key: string]: any; }>; dependsOnOwnProps: boolean; mapToProps(stateOrDispatch: { [key: string]: any; } | Dispatch, ownProps?: { [key: string]: any; } | undefined): import("./wrapMapToProps").MapToProps<{ [key: string]: any; }>; });