import { ViewContainerRef } from '@angular/core'; import { ComplexBase, ArrayBase } from '@syncfusion/ej2-ng-base'; /** * TabItemDirective represent a item of the EJ2 Angular Tab. * ```html * * * * * * * ``` */ export declare class TabItemDirective extends ComplexBase { private viewContainerRef; /** * Sets the CSS classes to the Tab item to customize its styles. * @default '' */ cssClass: any; /** * Sets true to disable user interactions of the Tab item. * @default false */ disabled: any; /** * The object used for configuring the Tab item header properties. * @default {} */ header: any; /** * Specifies the content of Tab item, that is displayed when concern item header is selected. * @default '' */ content: any; constructor(viewContainerRef: ViewContainerRef); } /** * TabItem Array Directive * @private */ export declare class TabItemsDirective extends ArrayBase { constructor(); }