import { QueryList, AfterContentInit, EventEmitter } from '@angular/core'; import { HcWcfTabTitleComponent } from './wcf-tab-title.component'; export declare class WcfTabComponent implements AfterContentInit { /** Plain text title of the tab; for HTML support include a `hc-tab-title` element */ wcfTabTitle: 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; _active: boolean; _htmlTitle: HcWcfTabTitleComponent; _wcfTabTitle: QueryList; ngAfterContentInit(): void; }