import { OnDestroy, OnInit } from '@angular/core'; import { TabDirective } from './tab.directive'; export declare class TabsetComponent implements OnInit, OnDestroy { vertical: boolean; justified: boolean; type: string; clazz: boolean; tabs: Array; classMap: any; protected isDestroyed: boolean; protected _vertical: boolean; protected _justified: boolean; protected _type: string; ngOnInit(): void; ngOnDestroy(): void; addTab(tab: TabDirective): void; removeTab(tab: TabDirective): void; protected getClosestTabIndex(index: number): number; protected hasAvailableTabs(index: number): boolean; protected setClassMap(): void; }