import { AxiosRequestConfig } from 'axios'; interface UseDownloadHook { download: (url: string, filename?: string, config?: AxiosRequestConfig, contentType?: string) => void; isLoading: boolean; } export declare const useDownload: () => UseDownloadHook; export declare const downloadFile: (res: BlobPart, type: string, filename: string) => void; export {};