export interface FileProcessing { sourcePath: string; targetPath: string; needsTemplateReplacement: boolean; fileAction: FileAction; } export declare enum FileAction { Backup = "backup", Remove = "remove", Copy = "copy", Link = "link" } export interface FileRenaming { regex: string; newName: string; needsTemplateReplacement: boolean; }