import { AfterViewInit, ChangeDetectorRef, EventEmitter, OnInit, QueryList } from '@angular/core'; import { TabPaneComponent } from "../tab-pane/tab-pane.component"; import { BasicUxElementComponent, BasicUxElementComponentChanges } from "../../basic-ux-element.component"; import { Observable } from "rxjs"; import { NgInailCommonConfig } from "../../../../ng-inail-common.config"; import * as i0 from "@angular/core"; export interface TabGroupComponentChanges extends BasicUxElementComponentChanges { } export declare class TabGroupComponent extends BasicUxElementComponent implements OnInit, AfterViewInit { private cdr; private libConfig; panes: QueryList; selectTab: Observable; selected: EventEmitter; isActive: (id: string) => boolean; getPaneTitle: (pane: TabPaneComponent) => string; detectPanesChange: () => void; constructor(cdr: ChangeDetectorRef, libConfig: NgInailCommonConfig); ngOnChanges(changes: TabGroupComponentChanges): void; ngOnInit(): void; ngAfterViewInit(): void; ngOnDestroy(): void; tabOnClick(id: string): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }