import { AfterContentInit, QueryList } from '@angular/core'; import { TabComponent } from './tab.component'; export declare enum TabsAlignment { Left = "left", Right = "right", Center = "center" } export declare class TabsComponent implements AfterContentInit { align: TabsAlignment; readonly tabsAlignment: string; tabs: QueryList; selectedTabIndex: number; /** * Sets first tab as active by default. */ ngAfterContentInit(): void; /** * Sets the passing tab as active. */ showTab(tabIndex: number): void; }