import type { Command } from 'commander'; interface WatchPROptions { yaml?: boolean; repo?: string; runId?: string; history?: boolean; timeout?: string; pollInterval?: string; failFast?: boolean; } /** * Register the watch-pr command */ export declare function registerWatchPRCommand(program: Command): void; /** * Execute watch-pr command * * @returns Exit code (0 = success, 1 = failure) */ export declare function watchPRCommand(prNumber: string | undefined, options: WatchPROptions): Promise; /** * Show verbose help with detailed documentation */ export declare function showWatchPRVerboseHelp(): void; export {}; //# sourceMappingURL=watch-pr.d.ts.map