import { AfterViewInit } from '@angular/core'; import { OnInit } from '@angular/core'; import { Router } from '@angular/router'; import { ParentLinkFactory } from './../../../../common/parent-link-factory'; export declare class EnvironmentDetailComponent implements OnInit, AfterViewInit { private router; parentLink: string; itemName: string; itemIcon: string; panelState: string; constructor(parentLinkFactory: ParentLinkFactory, router: Router); ngOnInit(): void; ngAfterViewInit(): void; close(): void; togglePanelState(event: any): void; }