import { IObserverPipe } from '../../type/observer-pipe.type';
import { IMapFunction } from './map-function.type';
export declare function mapObserverPipe<GIn, GOut>(mapFunction: IMapFunction<GIn, GOut>): IObserverPipe<GIn, GOut>;
