/** * the log parser class. */ export declare class LogParser { private filePath; private fileWriter; private errorUpdaterAngular15; private messages; /** * the constructor. * @param filePath the file path. * @param fileName the file name. */ constructor(filePath: string, fileName?: string); /** * the update function. * @param filePath the file path. * @param fileName the file name. */ update(filePath: string, fileName?: string): void; /** * the run function to resolve the errors. */ run(): Promise; }