import { Provider } from 'react-redux';
declare function useStateTB<S>(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 };
