import { IObserver } from '../../../type/observer.type';
import { ITapFunction } from './tap-function.type';
export declare function tapObserver<GValue>(emit: IObserver<GValue>, tapFunction: ITapFunction<GValue>): IObserver<GValue>;
