import { Dispatch } from 'redux';
import { AppState } from '../../common/reducers';
export declare const onKeyUpPress: () => (dispatch: (action: any) => void, getState: () => AppState) => void;
export declare const onKeyDownPress: () => (dispatch: (action: any) => void, getState: () => AppState) => void;
export declare const onKeyEnterPress: () => (dispatch: (action: any) => void, getState: () => AppState) => void;
export declare const onKeyLeftPress: () => (dispatch: Dispatch<any>, getState: () => AppState) => void;
export declare const onKeyRightPress: () => (dispatch: Dispatch<any>, getState: () => AppState) => void;
