import { OnDestroy, OnInit } from '@angular/core'; import { IGlue } from '../../models'; export declare abstract class GluePaneContentBase implements OnInit, OnDestroy { glueEditor: IGlue.IGlueEditor; tabName: string; name: string; subcribeIds: any[]; destroy: boolean; abstract onSelected(): void; showTabs(tabs: Array, activeTab?: string): Promise; orderTabs(tabs: Array): Promise; activeTab(name: string): Promise; hideTab(name: string): Promise; showTab(name: string): Promise; collapsePane(): void; expandPane(): void; ngOnDestroy(): void; ngOnInit(): void; dispose(): void; }