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;
    ngOnDestroy(): void;
    ngOnInit(): void;
    dispose(): void;
}
