import { CustomReducers, CreateAPI } from '../types'; export declare type ActionsProxy> = { create: CreateAPI; } & { [K in keyof LeafT]: ActionsProxy; }; declare function createActionsProxy>(leafState: LeafT, treeState: TreeT, reducersDict: CustomReducersT, path?: (string | number)[]): ActionsProxy; export default createActionsProxy;