export default class Menu extends UIComponent { _toRegExpPath(path: any): { paramNames: any[]; regExpPath: RegExp; }; _indexItemByPath(item: any): void; _indexByPath(): void; _indexParentByPath(item: any, parentItem: any): void; _indexParentsByPath(): void; _itemsByPath: {} | undefined; _parentsByPath: {} | undefined; getItemAndParsePath(path: any): { item: null; params: {}; }; getItem(path: any): null; toRoute({ parameters, queryString, hash }: { parameters: any; queryString: any; hash: any; }): { parameters: any; query: {}; hash: any; }; getParent(path: any): any; getFirstItem(): any; } import UIComponent from "./ui-component";