import { EventEmitter, TemplateRef, ChangeDetectorRef } from '@angular/core'; export declare class TabItem { private cdRef; /** * Sets the tab title. */ title: string | TemplateRef; /** * Set to `true` to activate the tab (display it). */ active: boolean; /** * Callback when the tab is selected. */ selected: EventEmitter>; constructor(cdRef: ChangeDetectorRef); /** * Activates tab item */ activate(): void; }