import { QueryList, EventEmitter, AfterContentInit } from '@angular/core'; import { TabComponent } from './tab.component'; import { RebirthNGConfig } from '../rebirth-ng.config'; export declare class TabsComponent implements AfterContentInit { type: 'tabs' | 'pills'; activeTab: number | string; vertical: boolean; justified: boolean; cssClass: string; tabs: QueryList; activeTabChange: EventEmitter; constructor(rebirthNGConfig: RebirthNGConfig); ngAfterContentInit(): void; select(id: number | string): void; }