import { IObserverPipe } from '../../type/observer-pipe.type';
/**
 * Returns an Observer that emits all items emitted by the source Observer that are distinct by comparison from previous values
 */
export declare function distinctObserverPipe<GValue>(): IObserverPipe<GValue, GValue>;
