import { Provider } from 'react-redux';
declare function useStateTB<S>(props?: {
    initialValue?: S | (() => S);
    forceInitialValue?: boolean;
    name?: string;
    logs?: boolean;
} | boolean | string | number | null | undefined | Array<any>): [S, (value: S) => void];
declare const withUseState: any;
export { useStateTB, Provider, withUseState };
