/// export declare const actionTypes: { SET_STATUS_GO_TO_OTHER_ACTION: string; SET_ARRAY_ACTION_GO_TO_OTHER_ACTION: string; SET_REF_OBJECT_ID_GO_TO_OTHER_ACTION: string; ADD_NODE_GO_TO_OTHER_ACTION: string; ENABLE_SELECT_NODE_BY_JOIN: string; SET_NODE_BRANCH: string; SET_NODE_TREES: string; SET_NODE_DETAIL: string; SET_FLATTEN_NODES: string; SET_ACTIVE_NODE: string; SET_ENABLED_NODES: string; CANCEL_CHANGE_NODE_GO_TO_OTHER_ACTION: string; }; export declare const initialState: { nodeBranch: never[]; nodeTrees: never[]; nodeDetail: {}; flattenNodes: never[]; enabledNodes: never[]; arrActionGoToOtherAction: never[]; nodeIdActive: null; statusGoToOtherAction: { isSelect: boolean; nodeIdToCome: null; nodeIdToGo: null; parentId: null; }; }; export declare const reducer: (state: any, action: any) => any; interface DispatchArgs { type: string; payload?: unknown; } export declare const apiContext: import("react").Context<{ state: any; useDispatch: (args: DispatchArgs) => void; }>; export declare const Provider: import("react").Provider<{ state: any; useDispatch: (args: DispatchArgs) => void; }>; export {};