import * as t from '@babel/types'; import { File_inputContext } from './Python3Parser'; interface SyntaxError { msg: string; column: number; err: any; line: number; recognizer: any; offendingSymbol: any; } export declare class PythonParser { protected readonly codeString: string; protected readonly ast: File_inputContext; protected errors: SyntaxError[]; constructor(codeString: string); protected parse(): File_inputContext; transpileToJs(): t.Program; stripQuotes(text: string): string; canParse(): boolean; throwErrorsIfAny(): void; } export {}; //# sourceMappingURL=PythonParser.d.ts.map