import AbstractParser from './AbstractParser'; import type { Service } from './types'; declare class TypeScriptParser extends AbstractParser { parse(moduleFilename: string, code: string): Service[]; getSupportedFileExtensions(): string[]; private findImportReferences; private findExportReferences; private findServiceDeclarations; private findConstructor; private getEntityName; } export default TypeScriptParser; //# sourceMappingURL=TypeScriptParser.d.ts.map