import { IterableX } from './iterablex'; /** * Creates a new iterable using the specified function implementing the members of AsyncIterable * * @export * @template T The type of the elements returned by the iterable sequence. * @param {(() => Iterator)} fn The function that creates the [Symbol.iterator]() method * @returns {IterableX} A new iterable instance. */ export declare function create(getIterator: () => Iterator): IterableX;