export declare class PythonInterpreter { constructor(); read(filename: string): string; run(code: string): Promise; runSync(code: string): string[]; }