type SubscribeProps<TFeatures, TSelected, TSourceValue> =
| SubscribePropsWithStore<TFeatures, TSelected>
| SubscribePropsWithSourceIdentity<TSourceValue>
| SubscribePropsWithSourceWithSelector<TSourceValue, TSelected>;Defined in: react-table/src/Subscribe.ts:66
TFeatures extends TableFeatures
TSelected = unknown
TSourceValue = unknown