import { type ParserOptions } from "../core/parser-engine.js"; import type { CesrMessage } from "../core/types.js"; /** * Adapt an async byte stream into parsed CESR frames. * * Boundary contract: * - chunks are fed in arrival order into one parser instance * - emitted parser error events are rethrown as stream errors * - yielded values are the historical `CesrMessage` frame payloads only */ export declare function toAsyncFrames(source: AsyncIterable, options?: ParserOptions): AsyncGenerator; //# sourceMappingURL=async-iterable.d.ts.map