import { StateProps } from './initial';
declare const KEYS: {
    UPDATE: string;
    ADD_COMMAND: string;
};
declare function Reducer(state: StateProps, action: any): any;
export { Reducer, KEYS };
