export interface RouteItem { pathPattern: string; menuLink: string; component: any; caption: string; } export interface SubMenu { items: Array; caption: string; } export declare function getMenuItems(): Array;