/** * Downloads a file. * * @example * Basic usage * ```ts * await downloadFile("http://some-website.com/data.csv", "./downloads/data.csv") * ``` * * @param url - The URL of the file to download * @param filePath - The local path where the file should be saved * * @category Web scraping */ export default function downloadFile(url: string, filePath: string): Promise;