import { AfterContentInit, QueryList, EventEmitter } from '@angular/core'; import { TabComponent } from './children/tab.component'; import { Size, TabsStyle } from './../common/enums'; export declare class TabsComponent implements AfterContentInit { classes: string; verticalClass: boolean; tabs: QueryList; testId: string; iconsSize: Size; isVertical: boolean; tabStyle: TabsStyle; selectedTab: EventEmitter; selectTab(tab: TabComponent): void; ngOnInit(): void; ngAfterContentInit(): void; }