import { Settings, TranslateFlags } from '../types/index.js'; import { FileToUpload } from 'generaltranslation/types'; import { BranchData } from '../types/branch.js'; /** * Sets up a project by uploading files running the setup step * @param files - Array of file objects to upload * @param options - The options for the API call * @param settings - Settings configuration * @returns The branch data */ export declare function runSetupProjectWorkflow(files: FileToUpload[], options: TranslateFlags, settings: Settings): Promise<{ branchData: BranchData; }>;