import { IterableX } from './iterablex'; /** * Creates an iterable from the specified elements. * * @export * @template TSource The type of the elements to create an iterable sequence. * @param {...TSource[]} args The elements to turn into an iterable sequence. * @returns {IterableX} The iterable sequence created from the elements. */ export declare function of(...args: TSource[]): IterableX; export declare class OfIterable extends IterableX { private _args; constructor(args: TSource[]); [Symbol.iterator](): Generator; }