export declare const SUPPORTED_CODEX_HOOK_VERSIONS: readonly ["codex-cli 0.153.0", "codex-cli 0.154.0", "codex-cli 0.155.0", "codex-cli 0.155.1", "codex-cli 0.156.1"]; export interface CodexHookRpc { version: string; processId?: number; request(method: string, params: unknown): Promise; close(): Promise; } /** An owned, short-lived native client. It cannot reload other app servers. */ export declare function connectCodexHookRpc(options: { command: string; home: string; codexHome?: string; }): Promise;