import { Observable } from '../Observable';
/**
* Returns a new observable that triggers on the second and following inputs.
* An input that triggers an event will return an pair of [(N - 1)th, Nth].
* The (N-1)th is stored in the internal state until Nth input occurs.
*
*
*
* @return {Observable} an observable of pairs of values.
* @method pairwise
* @owner Observable
*/
export declare function pairwise(): Observable<[T, T]>;
export interface PairwiseSignature {
(): Observable<[T, T]>;
}