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