import { ReducerSelectors } from '../types/selectors.types'; import { Entity, ReducerGroup, ReducerMetadata } from '../types/reducers.types'; import { ReducerHooks } from '../types/hooks.types'; /** * Creates React hooks to retrieve a reducer's props, as well as individual * requests and entities. * * @param {ReducerSelectors} reducerSelectors - The reducerSelectors object for * the reducer's props * @returns {ReducerHooks} React hooks for the reducer's props, as well as * individual requests and entities. */ export declare function createReducerHooks>(reducerSelectors: ReducerSelectors): ReducerHooks;