/*** * @file: * @author: caojianping * @Date: 2021-03-08 10:41:23 */ export interface IMenuOption { id?: number | string; title?: string; icon?: string; router?: string; children?: IMenuOption[]; } export interface ISystemMenuOption { router: string; moduleName: string; moduleNameEn: string; } export declare const MENUS: IMenuOption[];