import { IState } from '../store/interfaces';
import { Dispatch } from 'react';
import { Action } from '../store';
declare const useAppContext: () => {
    state: IState;
    dispatch: Dispatch<Action>;
};
export default useAppContext;
