export declare function tmuxInstalled(): boolean; /** * @param {{ * workspaceRoot: string, * env: Awaited>, * sessionName?: string, * windowName?: string, * once?: boolean, * pollMs?: string | null, * }} options */ export declare function ensureOpenCodeWatchdog(options: any): { sessionName: any; windowName: any; helperRelPath: any; state: string; currentSession: boolean; once: boolean; pollMs: number | null; }; /** * @param {{ targetPath: string, sessionName?: string, windowName?: string, once?: boolean, pollMs?: string }} options */ export declare function opencodeSuperviseCommand(options: any): Promise;