import type { YTDL_VideoInfo } from '../../types'; import { InternalDownloadOptions } from '../../core/types'; declare function downloadFromInfo(info: YTDL_VideoInfo, options: InternalDownloadOptions): Promise; declare function download(link: string, options: InternalDownloadOptions): Promise; export { download, downloadFromInfo };