import { Reducers } from "./types"; declare function createLazyReducer(name: string, fns: Reducers, initialState: State): (state: State | undefined, action: import("redux").Action) => any; export default createLazyReducer;