import { FluentAsyncIterable } from './types';
/**
 * Tranforms an asynchronous iterable into a [[FluentAsyncIterable]].
 * @typeparam T The type of the items in the async iterable.
 * @param iterable The asynchronous iterable instance.
 * @returns The [[FluentAsyncIterable]] instance.
 */
declare function fluentAsync<T>(iterable: AsyncIterable<T>): FluentAsyncIterable<T>;
export default fluentAsync;
