export default function generateReducer(actionMap: T, initialState?: S): (state: S | undefined, action: { type: keyof T; } & Partial) => S;