import { IObservablePipe } from '../../../../../type/observable-pipe.type';
import { IThenObservableInNotifications } from '../../then-observable';
import { IFinallyObservableCallback } from './finally-observable-callback.type';
import { IFinallyObservableOutNotifications } from './finally-observable-out-notifications.type';
export declare function finallyObservablePipe<GInNextValue>(onFinally: IFinallyObservableCallback<GInNextValue>): IObservablePipe<IThenObservableInNotifications<GInNextValue>, IFinallyObservableOutNotifications<GInNextValue>>;
