import { FILE_TYPES } from '../constants'; export declare type DownloadFileParamsType = { fileType: keyof typeof FILE_TYPES; file: any; contentType: string; name: string; }; export declare const downloadFile: ({ fileType, file, contentType, name, }: DownloadFileParamsType) => void;