export interface MenuItem { id: number; title: string; active: boolean; click?: (item: any, event?: Event) => void; value?: any; }