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