export declare class Configuration { legacy: boolean; private lang; private projectFile; private inputFile; private outputPath; private upperWords; private templatePath; private dictionary; constructor(); getProjectFile(): string; setProjectFile(projectFile: string): this; getInputFile(): string; setInputFile(inputFile: string): this; getOutputPath(): string; setOutputPath(outputPath: string): this; setTemplatePath(templatePath: string): this; getTemplatePath(): string; getUpperWords(): string; setUpperWords(upperWords: string): this; getLang(): string; setLang(lang: string): this; getDictionary(): string[]; setDictionary(dictionary: string): this; rebasePath(filePath: string): string; load(): Promise; save(): Promise; }