import type { Command } from "commander"; export type ActivityTimeoutCliOptions = { activityTimeoutMs?: number; }; /** * Every runner that spawns an agent needs the same inactivity bound, otherwise an * unattended run has no CLI-level stop. Registered here so spawn and the multi-round * runners cannot drift apart on flag name, parsing, or help text. */ export declare function addActivityTimeoutOption(command: TCommand): TCommand; export declare function pickActivityTimeoutOptions(options: ActivityTimeoutCliOptions): ActivityTimeoutCliOptions;