import { AppActionTypes } from '../actions'; /** * Root state props */ export interface IRootState { /** * Version */ version?: string; } declare const initialState: IRootState; /** * Root reducer * * @param {IRootState} prevState previous root state * @param {AppActionTypes} action root actions * @returns {IRootState} mutated root state */ declare const reducer: (prevState: IRootState, action: AppActionTypes) => IRootState; export default reducer; export { initialState };