import { default as React } from 'react'; import { Action } from './createAction'; import { AppState } from './reducers'; export interface StoreProviderProps { children: React.ReactNode; } export declare function StoreProvider(props: StoreProviderProps): import("react/jsx-runtime").JSX.Element; export declare function useAppDispatch(): (params: Action) => void; export declare function useAppSelector

(selector: (state: AppState) => P): P;