import { Settings } from '../types/index.js'; import type { FileToUpload } from 'generaltranslation/types'; import { BranchData } from '../types/branch.js'; /** * Uploads multiple files to the API using a workflow pattern * @param files - Array of file objects to upload * @param options - The options for the API call * @returns The branch data resolved during the workflow */ export declare function runUploadFilesWorkflow({ files, options, }: { files: { source: FileToUpload; translations: FileToUpload[]; }[]; options: Settings; }): Promise<{ branchData: BranchData; }>;