/// import { ReadableOptions } from 'stream'; import { AsyncIterableReadable } from '../../asynciterable/tonodestream'; import { BufferLike, UnaryFunction } from '../../interfaces'; export declare function toNodeStream(): UnaryFunction, AsyncIterableReadable>; export declare function toNodeStream(options: ReadableOptions & { objectMode: true; }): UnaryFunction, AsyncIterableReadable>; export declare function toNodeStream(options: ReadableOptions & { objectMode: false; }): UnaryFunction, AsyncIterableReadable>;