import type { OpenCodeCodexOrchConfig } from "../config/schema"; export { McpNameSchema, type McpName } from "./types"; type RemoteMcpConfig = { type: "remote"; url: string; enabled: boolean; headers?: Record; oauth?: false; }; export declare function createBuiltinMcps(disabledMcps?: string[], config?: OpenCodeCodexOrchConfig): Record;