import { ItemViewData } from "../types";
export declare const useMenuNodes: () => {
    processItem: (item: any, parentId: any, index: any) => void;
    getChildrenIds: (parentId: string, excludeDisabled?: boolean) => string[];
    getNode: (menuId: string) => ItemViewData;
    clearNodes: () => void;
    getDescendantIds: (parentId: string) => any;
};
