import { Observable } from 'rxjs'; /** * Wraps a poller with a notifier: when notifier$ emits true polling is paused, when false it resumes. * If notifier$ never emits, polling starts (same as resume). If notifier$ errors, the error is caught and polling is neither errored nor completed; the previous pause state is kept. * * @param poller$ - The polling observable to wrap * @param notifier$ - Emits true to pause, false to resume * @returns Observable that emits from poller$ when not paused */ export declare function withNotifierPause$(poller$: Observable, notifier$: Observable): Observable; //# sourceMappingURL=with-notifier-pause.d.ts.map