import { Observable } from '../observer'; /** * Converts the async-iterable sequence to an observable. * * @export * @template TSource The type of the elements in the source sequence. * @param {AsyncIterable} source The async-iterable to convert to an observable. * @returns {Observable} The observable containing the elements from the async-iterable. */ export declare function toObservable(source: AsyncIterable): Observable;