import { MenuItemModel } from './MenuItemModel'; interface MenuModel { title: string; entries: MenuItemModel[]; } export { MenuModel };