export declare abstract class CodeParser { parse(lines: string[]): void; protected abstract parseLine(line: string): string; }