import { TemplateRef } from '@angular/core';
import { AsiComponentTemplateTabHeaderDef } from '../../common/asi-component-template';
export declare class AsiTab {
    /** Give an id to the tab  */
    tabId: string;
    /** Label to display (is translated) */
    label: string;
    /** Add a custom class to the tab */
    tabClass: string;
    contentTemplate: TemplateRef<any>;
    headerDef: AsiComponentTemplateTabHeaderDef;
    active: boolean;
    index: Number;
}
