/** @component tabs */ import { OnInit, EventEmitter } from '@angular/core'; import { TabsService } from './tabs.service'; export declare class TabsComponent implements OnInit { private tabsService; /** @prop Optional CSS class name | '' */ className: string; /** @prop Set the index of the focused Tab | 0 */ focus: number; /** @prop Determines if the Tabs are in a justified layout | false */ justified: boolean; /** @prop Type of Tabs | 'tabs' */ tabType: string; /** @prop Callback function invoked when user selects a tab | null */ whenSelect: EventEmitter<{}>; readonly classes: string; constructor(tabsService: TabsService); ngOnInit(): void; }