import type { Registry } from '../registry.js'; import type { SandboxSubstrate } from '../substrate.js'; export interface PauseConeDeps { substrate: SandboxSubstrate; registry: Registry; } /** * Pause a running cloud cone. Fails if the cone is not found or already paused. * Updates registry state to 'paused' and lastSeen timestamp. * * Note: trayId and lastJoinUpdatedAt are deliberately NOT overwritten during pause, * as they are baseline values for the next resume operation to detect tray rebuilds. */ export declare function pauseCone(deps: PauseConeDeps, query: string): Promise; //# sourceMappingURL=pause.d.ts.map