import { IObserver } from'../../../type/observer.type';
/**
* Returns an Observer that emits all items emitted by the source Observer that are distinct by comparison from previous values
*/
export declarefunctiondistinctObserver<GValue>(emit: IObserver<GValue>): IObserver<GValue>;