import { type SandboxSubstrate } from '../_cloud_core/src/index.js'; export interface RunKillOpts { substrate: SandboxSubstrate; registryPath: string; query: string; } /** * Thin wrapper over killCone from @slicc/cloud-core. * Adapts the cloud-core interface to the node-server's file-backed registry. * Returns void for backward compatibility with existing callers. */ export declare function runKill(opts: RunKillOpts): Promise;