import { IterableX } from './iterablex';
export declare function as(source: string): IterableX<string>;
export declare function as<T>(source: Iterable<T>): IterableX<T>;
export declare function as<T>(source: ArrayLike<T>): IterableX<T>;
export declare function as<T>(source: T): IterableX<T>;
