import { IDefaultInNotificationsUnion } from '../../../../../misc/notifications/default-notifications-union.type';
import { IObservable } from '../../../../type/observable.type';
export declare type IObservableToAsyncGeneratorNotifications<GValue> = IDefaultInNotificationsUnion<GValue>;
export declare function toAsyncIterable<GValue>(subscribe: IObservable<IObservableToAsyncGeneratorNotifications<GValue>>): AsyncGenerator<GValue>;
