import { IterableX } from '../../iterable/iterablex'; /** * @ignore */ export declare function toArrayProto(this: IterableX): TSource[]; declare module '../../iterable/iterablex' { interface IterableX { toArray: typeof toArrayProto; } }