import { Provider } from 'react-redux'; declare function useStateTB(props: { initialValue?: S | (() => S); forceInitialValue?: boolean; name?: string; logs?: boolean; }): [S, (value: S) => void]; declare const monitorReducerEnhancer: (createStore: any) => (_reducer: any, initialState: any, enhancer: any) => any; export { useStateTB, Provider, monitorReducerEnhancer };