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