import { AEntity } from "../a-entity"; import { IMenuStructure } from "./i-menu-structure"; export declare class Right extends AEntity implements IMenuStructure { code: string; translation: string; rank: number; menuId: number; rightId: number; structurePath: string; isOwned: boolean; restrictionExplanation: string; private _subRights; subRights: Right[]; private compareFn; readonly children: IMenuStructure[]; }