import { PostCommand } from "./command.js"; export default class RenameFilesCommand extends PostCommand { private references; constructor(references: Map); execute(files: Map): Promise; /** * 1p. i18n.properties are not renamed and property keys are ignored during * the renaming across the files. * @param files - all files both base and appVariants * @param references - Reference maps of the app variant * @returns A map of renamed files */ rename(files: Map, references: Map): void; private getManifestSAPUI5DependencyIds; private getI18nPropertyKeys; } /** * We might rename appVariantIdHierarchy and dependencies, so we restore them after the renaming. */ export declare function restoreWhatShouldntBeRenamed(): (_target: any, _propertyKey: string, descriptor: PropertyDescriptor) => void;