/** * Streaming decoder - Transform stream for decoding TONL to JSON */ import { Transform } from 'stream'; import type { StreamDecodeOptions } from './types.js'; /** * Create a transform stream that decodes TONL chunks to JSON */ export declare function createDecodeStream(options?: StreamDecodeOptions): Transform; /** * Async iterator for decoding */ export declare function decodeIterator(iterable: AsyncIterable | Iterable, options?: StreamDecodeOptions): AsyncGenerator; //# sourceMappingURL=decode-stream.d.ts.map