export interface PythonCellRunnerInput { command: string; args: string[]; scriptPath: string; timeoutMs: number; } export declare function runPythonCell(input: PythonCellRunnerInput): Promise<{ stdout: string; stderr: string; }>; //# sourceMappingURL=python-cell-runner.d.ts.map