import { HttpClient } from '../../core/http-client'; import { FileDownloadOptions, FileDownloadResult } from './types'; export declare class FileDownloadService { private readonly httpClient; private readonly endpoint; constructor(httpClient: HttpClient); /** * Download a file by hash (MD5, SHA1, or SHA256) */ downloadFile(hash: string, options?: FileDownloadOptions): Promise; private checkForJsonError; private validateHash; private parseErrorMessage; } //# sourceMappingURL=file-download.d.ts.map