export = download;
/**
 * @method download
 * @description download a file to dist
 * @param { string } src download url
 * @param { string } dist
 * @param { boolean } [overwrite] overwrite file if exist
 */
declare function download(src: string, dist: string, overwrite?: boolean): Promise<void>;
