import { WorkingDirectoryFileChange } from '../model/status'; /** * Stage all the given files by either staging the entire path or by applying * a patch. * * Note that prior to stageFiles the index has been completely reset, * the job of this function is to set up the index in such a way that it * reflects what the user has selected in the app. */ export declare function stageFiles(repositoryPath: string, files: WorkingDirectoryFileChange[]): Promise;