import { QueryList, AfterContentInit } from '@angular/core'; import { EventEmitter, TemplateRef } from '@angular/core'; import { HcTabTitleComponent } from './tab-title.component'; export declare class TabComponent implements AfterContentInit { /** Plain text title of the tab; for HTML support include a `hc-tab-title` element */ tabTitle: string; /** Router path that the tab routes to. If one tab uses the routerLink in a tab set, all must use the router link. * Can be specified as '/path/2' or ['path', '2'] */ routerLink: any[] | string; /** Emits when this tab is selected; use instead of `(click)` for click binding */ tabClick: EventEmitter; /** The template to be used when this tab is selected. Defaults to the content of this tab component. * Not used when the tab set uses routing. */ tabContent: TemplateRef; _direction: string; _active: boolean; _htmlTitle: HcTabTitleComponent; _tabTitle: QueryList; ngAfterContentInit(): void; }