import type { FabricHostCall, FabricKernelRuntime, FabricSandboxOptions, FabricSandboxResult } from "./kernel.js"; /** A fresh CPython process per call. Only enforce=true adds an OS security boundary. */ export declare class CPythonRuntime implements FabricKernelRuntime { readonly binary: string; readonly enforce: boolean; constructor(binary?: string, enforce?: boolean); execute(code: string, hostCall: FabricHostCall, options: FabricSandboxOptions): Promise; } //# sourceMappingURL=cpython-runtime.d.ts.map