import { Language, IExecuteOptions } from "../constants"; /** * * @param input The code that should be executed * @param language Language of the input parameter * @param args Array of command line arguments * @param stdin stdin of the executed code * @returns Stdout of the code or an exception if stderr is not empty */ export default function execute(input: string, language: Language, args?: string[], stdin?: string, options?: IExecuteOptions): Promise; //# sourceMappingURL=executor.d.ts.map