/** * The class to upgrade the eslint to support 'gulp lintApp --fix'. */ export declare class EslintAutoFixUpgrader { private readonly fileName; private filePath; private fileWriter; private messages; /** * the constructor. * @param filePath the file path. */ constructor(filePath: string); /** * the run function to resolve the errors. */ run(): Promise; }