declare const createTempFolder: (length?: number) => string; declare const createLocalFile: (path: string, fileName: string, data: string) => string; declare const readLocalFile: (filename: string) => any; declare const downloadFile: (fileUrl: string, outputLocationPath: string) => Promise; declare const downloadFileFromUrl: (url: any, prefix?: boolean) => Promise; export { createTempFolder, createLocalFile, readLocalFile, downloadFile, downloadFileFromUrl };