import { type IExecuteFunctions, type INodeExecutionData } from '@tosspayments/n8n-workflow'; import type { SandboxContext } from './Sandbox'; import { Sandbox } from './Sandbox'; export declare class PythonSandbox extends Sandbox { private pythonCode; private readonly context; constructor(context: SandboxContext, pythonCode: string, helpers: IExecuteFunctions['helpers']); runCode(): Promise; runCodeAllItems(): Promise; runCodeEachItem(itemIndex: number): Promise; private runCodeInPython; private getPrettyError; } //# sourceMappingURL=PythonSandbox.d.ts.map