import { CloneTemplate, InjectTemplate } from "engine"; import { Engine } from "./Engine.js"; import { RavenConfigType } from "../types/configurator.js"; export declare class Manipulator extends Engine { outDirReplacement: { oldString: string; newString: string; }; constructor(configFileObject?: RavenConfigType); /** ** Create a copy of a template file with replacing the placeholders by a specific text * * @param commands[] A list of objects to be addressed */ clone(commands: CloneTemplate[]): Promise; inject(commands: InjectTemplate[]): Promise; }