1 | import type { Context } from 'react';
|
2 | import type { Store } from 'redux';
|
3 | import type { TExtend } from 'tsfn';
|
4 | export declare const ReduxStateFactory: <S>(context: Context<Store<S, import("redux").AnyAction>>) => <P extends {}, SP extends {}>(mapStateToProps: (state: S) => SP, stateKeysToWatch: (keyof S)[]) => (props: P) => TExtend<P, SP>;
|