import { AfterViewInit, ChangeDetectorRef, OnChanges, OnInit, SimpleChanges } from '@angular/core'; import { TabService } from '../tab.service'; export declare class TabComponent implements OnInit, OnChanges, AfterViewInit { private tabService; private cdRef; shouldShow: boolean; tabKey: string; constructor(tabService: TabService, cdRef: ChangeDetectorRef); ngOnInit(): void; ngAfterViewInit(): void; ngOnChanges(changes: SimpleChanges): void; }