import type { Registry } from '../registry.js'; import type { SandboxSubstrate } from '../substrate.js'; export interface KillConeDeps { substrate: SandboxSubstrate; registry: Registry; } export interface KillConeResult { sandboxId: string; alreadyDead: boolean; } /** * Kill a cloud cone and remove it from the registry. * Discriminates between "not found" substrate errors (sandbox is already gone, * safe to clean up registry) and other errors (network issues, auth failures, etc.) * which are re-thrown to surface the problem without silently leaking credits. */ export declare function killCone(deps: KillConeDeps, query: string): Promise; //# sourceMappingURL=kill.d.ts.map