import type { ReadStream, StreamCallback, StreamOptions } from '../types.js'; import type ResponseClass from './index.js'; export default function stream(this: ResponseClass, callback: StreamCallback): void; export default function stream(this: ResponseClass, options: StreamOptions, callback: StreamCallback): void; export default function stream(this: ResponseClass, options?: StreamOptions): Promise;