import { State } from '../state'; export declare const reducer: (initial: State) => import("typesafe-actions").Reducer & Readonly<{ handlers: { [x: string]: (state: State, action: any) => State; }; handleAction: any; handleType: any; }>; export default reducer;