export interface WatchCommandOptions { signal?: AbortSignal; pollIntervalMs?: number; } /** Follow one harness's unified activity/debug log until interrupted. */ export declare function runWatchCommand(binName: string, harness: string, args: readonly string[], options?: WatchCommandOptions): Promise;