import { type PackageManagerCommandRunResult, type RunCommandInTemporaryPackageManagerProjectOptions } from './runCommandInTemporaryPackageManagerProject.js'; export interface RunPythonInTemporaryUvProjectOptions extends Omit { pythonArgs?: readonly [string, ...string[]]; uvArgs?: readonly string[]; } /** * Runs a Python command inside a temporary uv project created from a submission * directory and the problem's `pyproject.toml` / `uv.lock`. */ export declare function runPythonInTemporaryUvProject(options: RunPythonInTemporaryUvProjectOptions): Promise;