import { OnDestroy } from '@angular/core'; export declare abstract class Container implements OnDestroy { private _subscription; protected constructor(); abstract resize(): any; addSubscription(teardown: any): void; ngOnDestroy(): void; }