import { Dispatch } from 'react'; export declare function useDispatch(): Dispatch; export declare function useSelector(selector: (state: any) => any): any; /** * Gives the whole store state without subscribing to it: the value is the one of * the current render and no store update triggers a new one. Use it when the * component already re-renders on its own for every case which matters, and * `useSelector` when a change of the state has to be followed. */ export declare function useStoreState(): any;