import type { ToolSession } from "../../tools"; import type { ExecutorBackendExecOptions, ExecutorBackendResult } from "../backend"; declare const _default: { id: "python"; label: string; highlightLang: string; isAvailable(session: ToolSession): Promise; execute(code: string, opts: ExecutorBackendExecOptions): Promise; }; export default _default;