export abstract class Parser { abstract loadFromFile(fileName: string): Promise; abstract parse(): Promise; }