import { Options } from 'got'; import { ExtractOptions } from 'tar-fs'; interface DownloadOptions { url: string; gotOpts?: Partial>; extractOpts?: ExtractOptions; dir: string; } declare function download({ url, gotOpts, extractOpts, dir }: DownloadOptions): Promise; export { download as default };