import { OnDestroy } from '@angular/core';
import { Subject } from 'rxjs/Subject';
export declare abstract class AbstractSubscriberComponent implements OnDestroy {
    protected isDestroyed: Subject<void>;
    ngOnDestroy(): void;
}
