import type { CreateReducerReturn, PayloadAction } from './createReducer'; type Reducers = Record>; type State = { [P in keyof TReducers]: TReducers[P]['initialState']; }; export declare function combineReducers(reducers: TReducers): { initialState: State; reducer: (state: State, action: PayloadAction) => State; }; export {}; //# sourceMappingURL=combineReducers.d.ts.map