import type { StorageFile, UploadResult } from './types'; /** * @function uploadFiles * @param {StorageFile[]} files * @param {string} pathname * @param {boolean} [shouldSeparatePath] - Whether output images and paths separately as array of strings or combine them as array of objects * @returns {Promise<{ images: string[], imagePaths: string[] }|UploadResult[]>} */ export default function uploadFiles(files: StorageFile[], pathname: string, shouldSeparatePath?: boolean): Promise<{ files: string[]; filePaths: string[]; } | UploadResult[]>; //# sourceMappingURL=uploadFiles.d.ts.map