import { IOStreamSource, StreamChunk } from './types.cjs'; /** Convert common stream sources into an AsyncIterable of chunks. */ declare function toAsyncIterable(source: IOStreamSource): AsyncIterable; export { toAsyncIterable };