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(iterable: Iterable): FluentIterable; export default fluent;