import { Observable, MonoTypeOperatorFunction } from 'rxjs'; /** * Just like `takeUntil()` but completes only when the notifier completes and ignores all `next` notifications. * * @param notifier */ export declare const takeUntilComplete: (notifier: Observable) => MonoTypeOperatorFunction;