import { IObservable } from '../../../../../../type/observable.type';
import { IThenObservableInNotifications } from '../../then-observable';
import { IThenObservableOnRejected } from '../../then-observable-on-rejected.type';
import { IRejectedObservableOutNotifications } from './rejected-observable-out-notifications.type';
export declare function rejectedObservable<GInNextValue, GOut>(subscribe: IObservable<IThenObservableInNotifications<GInNextValue>>, onRejected: IThenObservableOnRejected<GOut>): IObservable<IRejectedObservableOutNotifications<GInNextValue, GOut>>;
