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 declare function distinctObserver<GValue>(emit: IObserver<GValue>): IObserver<GValue>;
