import ReducerSystem from './ReducerSystem'; /** * Shortcut to create the appropriate reducer system. * * @param globalLoad - Indicate that the objects are loaded globally. * @returns The created reducer system. */ export default function useCacheReducer(globalLoad: true): ReducerSystem | undefined>; /** * Shortcut to create the appropriate reducer system. * * @param globalLoad - Indicate that the objects are loaded one at a time. * @returns The created reducer system. */ export default function useCacheReducer(globalLoad: false): ReducerSystem; }>;