/**
* Original sources:
* - https://github.com/kmalakoff/response-iterator/blob/master/src/index.ts
* - https://github.com/apollographql/apollo-client/blob/main/src/utilities/common/responseIterator.ts
*/
///
import type { Response as NodeResponse } from 'undici';
export declare function responseIterator(response: Response | NodeResponse | Buffer): AsyncIterableIterator;