import { AEntity } from "../a-entity"; import { Right } from "./right"; import { IMenuStructure } from "./i-menu-structure"; export declare class Menu extends AEntity implements IMenuStructure { route: string; translation: string; rank: number; parentMenuId: number; restrictionExplanation: string; structurePath: string; isOwned: boolean; private _subMenus; subMenus: Menu[]; private _rights; rights: Right[]; private compareFn; readonly children: IMenuStructure[]; }