import { parseManagedInstallOptions, type ManagedMcpInstallOptions, type ManagedMcpManifest, type ManagedMcpStatus } from "./mcp-shared.js"; export type CodexInstallMode = "published" | "local"; export type CodexMcpInstallOptions = ManagedMcpInstallOptions; export type CodexMcpManifest = ManagedMcpManifest; export type CodexMcpStatus = ManagedMcpStatus; export declare function installCodexMcp(options?: CodexMcpInstallOptions): CodexMcpManifest; export declare function removeCodexMcp(): { removed: boolean; configPath: string; manifestRemoved: boolean; }; export declare function getCodexMcpStatus(): CodexMcpStatus; export declare const parseCodexInstallOptions: typeof parseManagedInstallOptions; //# sourceMappingURL=codex-mcp.d.ts.map