import { Observable } from '../Observable'; /** * Ignores all items emitted by the source Observable and only passes calls of `complete` or `error`. * * * * @returns {Observable} an empty Observable that only calls `complete` * or `error`, based on which one is called by the source Observable. */ export declare function ignoreElements(): Observable;