import { IObservablePipe } from '../../../../../type/observable-pipe.type';
import { IThenObservableInNotifications } from '../../then-observable';
import { IThenObservableOnFulfilled } from '../../then-observable-on-fulfilled.type';
import { IFulfilledObservableOutNotifications } from './fulfilled-observable-out-notifications.type';
export declare function fulfilledObservablePipe<GInNextValue, GOut>(onFulfilled: IThenObservableOnFulfilled<GInNextValue, GOut>): IObservablePipe<IThenObservableInNotifications<GInNextValue>, IFulfilledObservableOutNotifications<GOut>>;
