import type { DownloadResult } from './types'; /** * Download multiple objects from pre-signed URLs * * @param functionKey - Configuration object containing the backend function key to filter and generate download URLs * @param keys - Array of object keys to download * @returns Promise resolving to DownloadResult[] * @throws {BridgeAPIError} When filtering fails or download encounters an error */ export declare const download: ({ functionKey, keys }: { functionKey: string; keys: string[]; }) => Promise; //# sourceMappingURL=download.d.ts.map