import { IteratorStream } from "../iterator-stream";
declare global {
    interface IteratorObject<T> {
        stream(): IteratorStream<T>;
        toAsync(): AsyncGenerator<T>;
    }
}
