import { OnInit, EventEmitter } from '@angular/core'; import { IdService } from '../../../shared/services/id.service'; export declare class MenuItemComponent implements OnInit { private idService; id: string; classList: string; onClick(e: any): void; href: string; link: string; divider: boolean; icon: string; iconWeight: string; router: boolean; routerTo: string; target: string; clickEvent: EventEmitter<{}>; constructor(idService: IdService); ngOnInit(): void; ngOnDestroy(): void; clickHandler(e: any): void; }