import { type HooksScope } from './codex-hooks.ts'; export interface CodexLiveOptions { hooksScope?: HooksScope; hooksFallbackToProject?: boolean; codexArgs?: string[]; listenUrl?: string; } export declare function codexLive(options?: CodexLiveOptions): Promise;