export type BoundedNdjsonResponseOptions = { readonly maximumBytes: number; readonly sizeLimitError: () => Error; }; export declare function readBoundedNdjsonResponse(response: Response, options: BoundedNdjsonResponseOptions): AsyncIterable;