import { ChangeDetectorRef, ElementRef, OnChanges, OnInit, SimpleChanges, TemplateRef } from '@angular/core'; export declare class GasTabComponent implements OnInit, OnChanges { /** поддержка лайтинг табов */ templateRef: TemplateRef; changeDetectorRef: ChangeDetectorRef; /** Название таба */ tabTitle: string; /** Темплейт название таба */ tabTitleTemplate: TemplateRef; /** Активный таб */ active: string | boolean; /** Состояние неактивности */ disabled: string | boolean; id: string; templateLabel: TemplateRef; constructor( /** поддержка лайтинг табов */ templateRef: TemplateRef, changeDetectorRef: ChangeDetectorRef); ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; }