/** * `agenticros codex` — thin wrapper around unified MCP setup (Codex host). */ import { type CodexConfigScope } from "../util/codex-config.js"; import { codexOnPath } from "../util/mcp-setup.js"; export type { CodexConfigScope }; export interface CodexSetupOptions { scope?: CodexConfigScope; yes?: boolean; quiet?: boolean; } export interface CodexDoctorOptions { json?: boolean; } export { codexOnPath }; export declare function codexSetupCommand(opts?: CodexSetupOptions): Promise; export declare function codexDoctorCommand(opts?: CodexDoctorOptions): Promise; //# sourceMappingURL=codex.d.ts.map