/** * 菜单状态服务 * @scope FormModule */ declare class MenuStateService { private readonly COMMAND_SERVICE_LINK_STORAGE_KEY; private getState; private setState; addMenuState(parentMenuId: string, childMenuId: string, status?: boolean): void; getMenuState(parentMenuId: string, childMenuId?: string): any; updateMenuState(childMenuId: string, status: boolean): void; removeMenu(menuId: string): void; private removeParentMenu; private removeChildMenu; } export { MenuStateService };