import type Controller from '../../controller/Controller.js'; import type { ActionTypes, State } from '../../types.js'; export default function createReducer(controller: Controller): ReducerType; export declare const initialState: State; type ReducerType = (state: State | undefined, action: ActionTypes) => State; export {}; //# sourceMappingURL=createReducer.d.ts.map