/**
 * Only emit when the current value is different than the last.
 */
export declare function distinctUntilChanged<T>(): (source: AsyncIterable<T>) => AsyncGenerator<T, void, unknown>;
