declare const download: ({ url, name, }: {
    url: string;
    name: string;
}) => Promise<BinaryType>;
export default download;
