import * as i0 from '@angular/core'; import { OnDestroy, DestroyRef } from '@angular/core'; import { Subject } from 'rxjs'; /** * @license * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://github.com/thekhegay/ngwr/blob/main/LICENSE */ declare abstract class WrAbstractBase implements OnDestroy { /** * @deprecated use destroyRef$ instead * @protected */ protected readonly destroyed$: Subject; protected readonly destroyRef$: DestroyRef; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; } export { WrAbstractBase };