/** Determine the native MCP config path for a given agent. */ export declare function getNativeMcpPath(adapterName: string, projectRoot: string): Promise; /** Read native MCP config from disk, or return empty object if missing. */ export declare function readNativeMcp(filePath: string): Promise>; /** Read native Codex TOML MCP config from disk, or return empty object if missing. */ export declare function readNativeMcpToml(filePath: string, parseToml: (text: string) => Record): Promise>; /** Write native MCP config to disk, creating parent directories as needed. */ export declare function writeNativeMcp(filePath: string, data: unknown, containmentRoot?: string): Promise;