import { Readable } from "stream"; import { ResponseAbstract } from "./ResponseAbstract.js"; type DownloadSource = string | Readable; type DownloadOptionsAuth = { filename: string; mimeType: string; source: DownloadSource; size?: number; }; export declare class DownloadResponse extends ResponseAbstract { constructor(options: DownloadOptionsAuth); serialize(source: Readable): Readable; } export {}; //# sourceMappingURL=DownloadResponse.d.ts.map