import { File } from '../../platform'; import { ArtifactError } from '../../manager/common'; import { BranchConfig } from '../common'; export interface PackageFilesResult { artifactErrors: ArtifactError[]; parentBranch?: string; updatedPackageFiles: File[]; updatedArtifacts: File[]; } export declare function getUpdatedPackageFiles(config: BranchConfig): Promise;