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