import type { PlatformAdapter } from '../../platform/adapter.js'; import type { PlatformFileRef, DownloadedFile } from '../../platform/types.js'; declare const IMAGE_MIMES: Set; declare const VIDEO_MIMES: Set; declare function downloadFiles(files: PlatformFileRef[] | undefined, adapter: PlatformAdapter, tempDir: string): Promise; export { downloadFiles, IMAGE_MIMES, VIDEO_MIMES };