1 | import type { Context } from 'react';
|
2 | import type { Store } from 'redux';
|
3 | import type { TExtend } from 'tsfn';
|
4 | export declare const ReduxDispatchFactory: <STORE extends Store<any, import("redux").AnyAction>>(context: Context<STORE>) => <K extends string>(dispatchName: K) => <P extends {}>(props: P) => TExtend<P, { [k in K]: STORE["dispatch"]; }>;
|