export declare const to_query: (params: Record) => string; export declare function fetch_zipped(url: string, { unzip }?: { unzip?: boolean | undefined; }): Promise; export type DownloadData = string | Blob | ArrayBuffer | ArrayBufferView; export declare function download(data: DownloadData, filename: string, type: string): void;