import { DownloadType, GetCacheKeyFn, GetDownloadUrlFn, ParseCSVType } from "./download.js";

//#region src/download/at.d.ts
declare const getCacheKey: GetCacheKeyFn;
declare const getDownloadUrl: GetDownloadUrlFn;
declare const downloadCSV: DownloadType;
declare const parseCSV: ParseCSVType;
//#endregion
export { downloadCSV, getCacheKey, getDownloadUrl, parseCSV };