import { Actions } from '../../types/actions.type'; import LeafReducer from '../../types/reducer.type'; /** * Returns the core Create API * @param reducersDict LeafReducer.Dictionary * @param pathToLeafOrBranch * * @returns The core Create API at a given path * * @template RD - Standardised Leaf Reducer Dictionary * @template LS - LeafShape * @template TS - TreeShape * @template LRD - LeafReducer.Definitions */ declare function actionsCreate(reducersDict: RD, pathToLeafOrBranch?: (string | number)[]): Actions.CreateAPI; export default actionsCreate;