/// import { TSError } from "ts-node"; import { Context } from "vm"; export declare function executeJavaScript(code: string, filename: string, context: Context): any; export declare function executeJavaScriptAsync(code: string, filename: string, context: Context): Promise; export declare function isRecoverable(error: TSError): boolean;