import type { RunHandle } from "../../../process-runner/dist/index.js"; export declare const RUN_HANDLE_TERMINATION_GRACE_MS = 1000; export interface RunHandleTerminationResult { escalated: boolean; exited: boolean; } export declare function terminateRunHandle(handle: RunHandle, graceMs?: number): Promise;