#!/usr/bin/env bun import type { FrozenAdmission } from "../sdk/execution/types.js"; import { type PureInput } from "./runtime-pure-contract.js"; import type { RuntimeResult } from "./runtime-store.js"; export interface RuntimeWork { admission: FrozenAdmission; bundleBase64: string; input: { content: string; title?: string; } | PureInput; } export interface SupervisorOptions { executable?: string; dependenciesPath: string; unprivileged?: boolean; guardPath?: string; } export declare function executeRuntimeWork(work: RuntimeWork, options: SupervisorOptions): Promise; export declare function runRuntimeWorker(env?: Record): Promise;